Skip to content

Instantly share code, notes, and snippets.

@dnakagome
Created May 3, 2011 00:53
Show Gist options
  • Save dnakagome/952644 to your computer and use it in GitHub Desktop.
Save dnakagome/952644 to your computer and use it in GitHub Desktop.
Java JUnit test method template for Eclipse
${impst:importStatic('org.hamcrest.Matchers.*','org.junit.Assert.*')}
${imp:import(org.junit.Test)}
@Test
public void ${name}() throws Exception {
${cursor}assertThat(true, is(true));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment