summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/launchers/interaction/src
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2009-09-11 21:38:42 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2009-09-11 21:38:42 +0000
commite89f006b6e3c1d7ffdb6d771e8b20af16611e096 (patch)
treeaf21d7dd5fee47833b590c59a51a1857d82ae2c5 /sandbox/travelsample/launchers/interaction/src
parentfc891cea49ffa192a99e0600a3addfb0d47c5cd2 (diff)
Add unit test and clean up the pom
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@814040 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/launchers/interaction/src')
-rw-r--r--sandbox/travelsample/launchers/interaction/src/test/java/scatours/InteractionTestCase.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/sandbox/travelsample/launchers/interaction/src/test/java/scatours/InteractionTestCase.java b/sandbox/travelsample/launchers/interaction/src/test/java/scatours/InteractionTestCase.java
new file mode 100644
index 0000000000..c674cdcd75
--- /dev/null
+++ b/sandbox/travelsample/launchers/interaction/src/test/java/scatours/InteractionTestCase.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 InteractionTestCase {
+
+ @Before
+ public void startServer() throws Exception {
+ }
+
+ @Test
+ public void testLauncher() throws Exception {
+ InteractionLauncher.main(null);
+ }
+
+ @After
+ public void stopServer() throws Exception {
+ }
+}