summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-travelsample-1.0/launchers/usingsca/src/test/java/scatours/UsingTestCase.java
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-15 15:22:00 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-15 15:22:00 +0000
commitef4943a695cc635c90ef6ab563810583bafe99fa (patch)
treef6cc9a9cf535efb61b8c81dc6c8397e22c201255 /sca-java-1.x/branches/sca-java-travelsample-1.0/launchers/usingsca/src/test/java/scatours/UsingTestCase.java
parent0b18cf2f22157402c97e6676dcae521c0de91867 (diff)
Merge revision r944272 from trunk
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@944664 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/branches/sca-java-travelsample-1.0/launchers/usingsca/src/test/java/scatours/UsingTestCase.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/sca-java-1.x/branches/sca-java-travelsample-1.0/launchers/usingsca/src/test/java/scatours/UsingTestCase.java b/sca-java-1.x/branches/sca-java-travelsample-1.0/launchers/usingsca/src/test/java/scatours/UsingTestCase.java
new file mode 100644
index 0000000000..cd643b6649
--- /dev/null
+++ b/sca-java-1.x/branches/sca-java-travelsample-1.0/launchers/usingsca/src/test/java/scatours/UsingTestCase.java
@@ -0,0 +1,42 @@
+/*
+ * 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 scatours;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+/**
+ * Tests the launcher
+ */
+public class UsingTestCase {
+
+ @Before
+ public void startServer() throws Exception {
+ }
+
+ @Test
+ public void testLauncher() throws Exception {
+ UsingLauncher.main(null);
+ }
+
+ @After
+ public void stopServer() throws Exception {
+ }
+}