summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-12-11 09:46:45 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-12-11 09:46:45 +0000
commit11dcc5a7f0badd6db1d21e71886e3c75c242d918 (patch)
treee5c7f850f679c1e887753efec0e80f6b1525003d /sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test
parent1b08d2a7cb28306baabaaf12f1daa39e866b9ff3 (diff)
Start of a three node test to stress the operation of a distributed registry. Not in build.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@889548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test')
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java3
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java8
2 files changed, 0 insertions, 11 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java
index 15126b9c5d..4e7b099ad4 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java
@@ -28,9 +28,6 @@ import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
-/**
- * This shows how to test the Calculator service component.
- */
public class Client {
private static Node clientNode;
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java
index 0acb42334f..cd020b5c33 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java
@@ -28,9 +28,6 @@ import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
-/**
- * This shows how to test the Calculator service component.
- */
public class Service {
private static Node serviceNode;
@@ -59,10 +56,5 @@ public class Service {
if (serviceNode != null) {
serviceNode.stop();
}
- }
-
- public static void main(String[] args) throws Exception {
- Service.setUpBeforeClass();
- Service.tearDownAfterClass();
}
}