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/5391929 to your computer and use it in GitHub Desktop.
Save richashworth/5391929 to your computer and use it in GitHub Desktop.
package com.richashworth.testingutils.mocking;
import org.junit.Test;
import static junit.framework.Assert.assertEquals;
public class FootballerTest {
@Test
public void testGetGameGoalsRatio() {
Footballer footballer = new Footballer();
footballer.setGamesPlayed(14);
footballer.setGoalsScored(7);
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