Skip to content

Instantly share code, notes, and snippets.

@josefbetancourt
Created November 30, 2011 09:19
Show Gist options
  • Save josefbetancourt/1408493 to your computer and use it in GitHub Desktop.
Save josefbetancourt/1408493 to your computer and use it in GitHub Desktop.
Sample class for illustrating unit testing
public class Fubar {
private boolean launch = true;
public void getLaunch(){
return this.launch;
}
public void setLaunch(boolean launch){
/* this.launch = launch; */ // broken!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment