summaryrefslogtreecommitdiffstats
path: root/java/sca/itest
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-06-12 06:44:32 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-06-12 06:44:32 +0000
commit7f74748567b273f5537b7ed3d29055281519a7ad (patch)
tree09e6801a3f9c378e0c6f9601eb6660a7573dee4d /java/sca/itest
parent55e6e0ea28d1d28f72664280cbbcb2f5971d79b7 (diff)
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
Diffstat (limited to 'java/sca/itest')
-rw-r--r--java/sca/itest/bpel/helloworld/src/test/java/helloworld/HelloWorldTestCase.java6
1 files changed, 3 insertions, 3 deletions
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();
}