Skip to content

Instantly share code, notes, and snippets.

@babjo
Last active July 17, 2021 10:48
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 babjo/c4bed924c954da82f5815b8bfdbc79af to your computer and use it in GitHub Desktop.
Save babjo/c4bed924c954da82f5815b8bfdbc79af to your computer and use it in GitHub Desktop.
public class BigClass {
private Collaborator collaborator1;
private Collaborator collaborator2;
private Collaborator collaborator3;
private Collaborator collaborator4;
private Collaborator collaborator5;
....
public void doSomething(){
...
}
}
public class BigClassTest {
@Test
public void doSomething_thrownByCollaborator1() {
...
}
@Test
public void doSomething_thrownByCollaborator2() {
...
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment