summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/launcher-embedded-osgi-base/src/test/java/launcher/LauncherTestCase.java
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-06-25 12:08:21 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-06-25 12:08:21 +0000
commitf1d051611cc4267900d787ce273c3815d8268764 (patch)
treecbd9b200bed47a262b9a5f6bff7fd446dbc279f6 /sca-java-2.x/trunk/samples/launcher-embedded-osgi-base/src/test/java/launcher/LauncherTestCase.java
parent7b2bc4f51a7623804215c1ebd1c95748a6761149 (diff)
Add a launcher sample using osgi and the base jar
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@957909 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/samples/launcher-embedded-osgi-base/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-base/src/test/java/launcher/LauncherTestCase.java b/sca-java-2.x/trunk/samples/launcher-embedded-osgi-base/src/test/java/launcher/LauncherTestCase.java
new file mode 100644
index 0000000000..9228d33018
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/launcher-embedded-osgi-base/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"});
+ }
+}