Skip to content

Instantly share code, notes, and snippets.

@JaeYeopHan
Last active May 30, 2017 01:26
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 JaeYeopHan/25e2e3a2d64d208837a73225f0fa5284 to your computer and use it in GitHub Desktop.
Save JaeYeopHan/25e2e3a2d64d208837a73225f0fa5284 to your computer and use it in GitHub Desktop.
JUnit template
@Test
public void test() {
assertThat(testFunction(), is(""));
}
public String testFunction() {
return "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment