From b3f4811be6832b95681efd2c06f34167b1d98256 Mon Sep 17 00:00:00 2001 From: slaws Date: Thu, 10 Dec 2009 12:47:31 +0000 Subject: 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 --- .../src/test/java/itest/TwoNodesTestCase.java | 61 ---------------------- 1 file changed, 61 deletions(-) delete mode 100644 sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/TwoNodesTestCase.java (limited to 'sca-java-2.x/trunk') 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(); -// } - } -} -- cgit v1.2.3