Skip to content

Instantly share code, notes, and snippets.

@matterche
Forked from hstaudacher/junit4-templates.xml
Created March 22, 2012 12:16
Show Gist options
  • Save matterche/2157986 to your computer and use it in GitHub Desktop.
Save matterche/2157986 to your computer and use it in GitHub Desktop.
JUnit4 Templates for Eclipse
<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="java" deleted="false" description="" enabled="true" name="setup">${:import(org.junit.Before)}
@Before
public void setUp() {
${cursor}
}</template><template autoinsert="true" context="java" deleted="false" description="" enabled="true" name="teardown">${:import(org.junit.After)}
@After
public void tearDown() {
${cursor}
}</template><template autoinsert="false" context="java-members" deleted="false" description="test method" enabled="true" id="org.eclipse.jdt.ui.templates.test" name="test">${:import(org.junit.Test)}
@Test
public void test${name}() {
${cursor}
}</template></templates>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment