Skip to content

Instantly share code, notes, and snippets.

@iporsut
Created October 21, 2014 15:10
Show Gist options
  • Save iporsut/b3e95478733c1f28fabd to your computer and use it in GitHub Desktop.
Save iporsut/b3e95478733c1f28fabd to your computer and use it in GitHub Desktop.
System Test Java
public class System {
public System(Authorizer authorizer) {
this.authorizer = authorizer;
}
public int loginCount() {
//returns number of logged in users.
}
}
@Test
public void newlyCreatedSystem_hasNoLoggedInUsers() {
System system = new System(new DummyAuthorizer());
assertThat(system.loginCount(), is(0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment