From 7f74748567b273f5537b7ed3d29055281519a7ad Mon Sep 17 00:00:00 2001 From: lresende Date: Fri, 12 Jun 2009 06:44:32 +0000 Subject: Minor fix on test case to comply with jUnit 4.5 style git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@784003 13f79535-47bb-0310-9956-ffa450edef68 --- .../helloworld/src/test/java/helloworld/HelloWorldTestCase.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'java/sca/itest') diff --git a/java/sca/itest/bpel/helloworld/src/test/java/helloworld/HelloWorldTestCase.java b/java/sca/itest/bpel/helloworld/src/test/java/helloworld/HelloWorldTestCase.java index ead696f03d..31b3577da4 100644 --- a/java/sca/itest/bpel/helloworld/src/test/java/helloworld/HelloWorldTestCase.java +++ b/java/sca/itest/bpel/helloworld/src/test/java/helloworld/HelloWorldTestCase.java @@ -35,13 +35,13 @@ import org.junit.Test; */ public class HelloWorldTestCase { - private Node node; + private static Node node; /** * @throws java.lang.Exception */ @BeforeClass - protected void setUp() throws Exception { + public static void setUp() throws Exception { node = NodeFactory.newInstance().createNode(); node.start(); } @@ -50,7 +50,7 @@ public class HelloWorldTestCase { * @throws java.lang.Exception */ @AfterClass - protected void tearDown() throws Exception { + public static void tearDown() throws Exception { node.stop(); } -- cgit v1.2.3