Merge pull request #105 from leandromoreira/patch-4

little refactoring over the test for junit4 and previous version
This commit is contained in:
Honza Pokorny 2012-05-22 02:15:18 -07:00
commit d6c84f97fd

View File

@ -64,10 +64,14 @@ snippet cs
snippet tc
public class ${1:`Filename()`} extends ${2:TestCase}
snippet t
public void test${1:Name}() throws Exception ${2}
public void test${1:Name}() throws Exception {
${2}
}
snippet test
@Test
public void test${1:Name}() throws Exception ${2}
public void test${1:Name}() throws Exception {
${2}
}
snippet cl
class ${1:`Filename("", "untitled")`} ${2}
snippet in