Skip to content

Instantly share code, notes, and snippets.

@richashworth
Last active December 16, 2015 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richashworth/5391945 to your computer and use it in GitHub Desktop.
Save richashworth/5391945 to your computer and use it in GitHub Desktop.
package com.richashworth.testingutils.mocking;
import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
import static junit.framework.Assert.assertEquals;
public class FootballerTest2 {
private MockObjectPopulator mockObjectPopulator = new MockObjectPopulator();
@Test
public void testGetGameGoalsRatio() {
Footballer footballer = new Footballer();
Map<String,Object> customValuesMap = new HashMap<String, Object>();
customValuesMap.put("gamesPlayed", 14);
customValuesMap.put("goalsScored", 7);
mockObjectPopulator.populateMockObjectWithCustomValues(footballer, customValuesMap);
assertEquals(Double.valueOf(0.5), footballer.getAvgGoalsPerGame());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment