summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/launcher-embedded-osgi/src/test/java/launcher/LauncherTestCase.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-05-14 14:56:39 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-05-14 14:56:39 +0000
commitc5a139a16bfc1089c96bea3207191b09b676d44a (patch)
treebfe3cd979857cdd2f6858b998343704020e5a85c /sca-java-2.x/trunk/samples/launcher-embedded-osgi/src/test/java/launcher/LauncherTestCase.java
parent93ee28a97432d9448fa793cf47ff71f33186ae3b (diff)
Add an OSGi based launcher. Does the same thing as the JSE laucher except using node launcher equinox
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@944302 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/samples/launcher-embedded-osgi/src/test/java/launcher/LauncherTestCase.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/launcher-embedded-osgi/src/test/java/launcher/LauncherTestCase.java b/sca-java-2.x/trunk/samples/launcher-embedded-osgi/src/test/java/launcher/LauncherTestCase.java
new file mode 100644
index 0000000000..9706249751
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/launcher-embedded-osgi/src/test/java/launcher/LauncherTestCase.java
@@ -0,0 +1,39 @@
+/*
+ * 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 launcher;
+
+import org.junit.Test;
+
+
+
+/**
+ * Test the Calculator composition.
+ */
+public class LauncherTestCase {
+
+ @Test
+ public void testCOntributionBindingSCACalculator() throws Exception {
+ SampleJSELauncher.main(new String[] {"contribution-binding-sca-calculator"});
+ }
+
+ @Test
+ public void testCOntributionBindingWSCalculator() throws Exception {
+ SampleJSELauncher.main(new String[] {"contribution-binding-ws-calculator"});
+ }
+}