Created
May 3, 2011 00:53
-
-
Save dnakagome/952644 to your computer and use it in GitHub Desktop.
Java JUnit test method template for Eclipse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
${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