summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-12-10 12:47:31 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-12-10 12:47:31 +0000
commitb3f4811be6832b95681efd2c06f34167b1d98256 (patch)
treed1c3e59970d99862cd7f2e0f7409acc07caa7764 /sca-java-2.x/trunk
parente5e5d9743d973674451bdea3a13ec5f8b3587e26 (diff)
remove test case as not required any more. Test is kicked off using ant plugin.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@889243 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/TwoNodesTestCase.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/TwoNodesTestCase.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/TwoNodesTestCase.java
deleted file mode 100644
index b13d25a706..0000000000
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/TwoNodesTestCase.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package itest;
-
-import java.io.File;
-
-import org.apache.tuscany.sca.node.Node;
-import org.apache.tuscany.sca.node.NodeFactory;
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
-import org.junit.Test;
-
-/**
- * This shows how to test the Calculator service component.
- */
-public class TwoNodesTestCase {
-
- private static Node clientNode;
-
- @BeforeClass
- public static void setUpBeforeClass() throws Exception {
-
- // Get the service running in a separate VM
- //Runtime.getRuntime().exec("ant");
-
- //NodeFactory factory = NodeFactory.newInstance();
-
- //clientNode = factory.createNode(new File("client-config.xml").toURI().toURL());
- //clientNode.start();
-
- }
-
- @Test
- public void testNothing() throws Exception {
-
- }
-
- @AfterClass
- public static void tearDownAfterClass() throws Exception {
-// if (clientNode != null) {
-// clientNode.stop();
-// }
- }
-}