From 5d11f493b70759e5ae1c0e855c7abeed787c984a Mon Sep 17 00:00:00 2001 From: Leandro Moreira Date: Mon, 21 May 2012 23:17:30 -0300 Subject: [PATCH] little refactoring over the test for junit4 and previous version --- snippets/java.snippets | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/snippets/java.snippets b/snippets/java.snippets index 6996782..19a2420 100644 --- a/snippets/java.snippets +++ b/snippets/java.snippets @@ -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