From 1d3030d1a5539fa19e3e93e8caf4e17745f2debe Mon Sep 17 00:00:00 2001 From: rfeng Date: Tue, 9 Mar 2010 01:25:10 +0000 Subject: Start with a known WSDL git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@920606 13f79535-47bb-0310-9956-ffa450edef68 --- .../test/java/weather/BindingWSJAXWSTestCase.java | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 sandbox/rfeng/binding-ws-jaxws/src/test/java/weather/BindingWSJAXWSTestCase.java (limited to 'sandbox/rfeng/binding-ws-jaxws/src/test/java/weather/BindingWSJAXWSTestCase.java') diff --git a/sandbox/rfeng/binding-ws-jaxws/src/test/java/weather/BindingWSJAXWSTestCase.java b/sandbox/rfeng/binding-ws-jaxws/src/test/java/weather/BindingWSJAXWSTestCase.java new file mode 100644 index 0000000000..a9d74553dc --- /dev/null +++ b/sandbox/rfeng/binding-ws-jaxws/src/test/java/weather/BindingWSJAXWSTestCase.java @@ -0,0 +1,61 @@ +/* + * 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 weather; + +import org.apache.tuscany.sca.node.Contribution; +import org.apache.tuscany.sca.node.ContributionLocationHelper; +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; + +/** + * + */ +public class BindingWSJAXWSTestCase { + private static Node node; + + /** + * @throws java.lang.Exception + */ + @BeforeClass + public static void setUpBeforeClass() throws Exception { + String location = ContributionLocationHelper.getContributionLocation(WeatherForecastImpl.class); + node = NodeFactory.getInstance().createNode("WeatherForecast.composite", new Contribution("c1", location)); + node.start(); + } + + @Test + public void testJAXWS() throws Exception { + WeatherForecastClient.testJAXWS(node); + } + + /** + * @throws java.lang.Exception + */ + @AfterClass + public static void tearDownAfterClass() throws Exception { + if (node != null) { + node.stop(); + } + } + +} -- cgit v1.2.3