Skip to content

Instantly share code, notes, and snippets.

@richashworth
Last active September 29, 2015 01:07
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/1524312 to your computer and use it in GitHub Desktop.
Save richashworth/1524312 to your computer and use it in GitHub Desktop.
Used in Example to Demonstrate Naive Initialisation of Mock Object
package com.richashworth.testingutils.mocking;
public class Footballer {
private String name;
private int age;
private Double salary;
private Integer gamesPlayed;
private Integer goalsScored;
private Boolean isCaptain;
public double getAvgGoalsPerGame(){
return goalsScored / gamesPlayed;
}
// <getters and setters>
// <hashcode>
// <equals>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment