little refactoring over the test for junit4 and previous version

This commit is contained in:
Leandro Moreira 2012-05-21 23:17:30 -03:00
parent 4537a88e45
commit 5d11f493b7

View File

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