Skip to content

Instantly share code, notes, and snippets.

@kmdupr33
Created April 17, 2015 13:20
Show Gist options
  • Save kmdupr33/03c9e003d2c3c7649297 to your computer and use it in GitHub Desktop.
Save kmdupr33/03c9e003d2c3c7649297 to your computer and use it in GitHub Desktop.
public void testSquare() {
Calculator calculator = new Calculator();
TerribleMathStudent terribleMathStudent = new TerribleMathStudent(calculator);
//terribleMathStudent uses calculator to do this
int result = terribleMathStudent.square(2);
assertTrue(calculator.didDoMath());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment