summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk
diff options
context:
space:
mode:
authorkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-08-12 13:25:51 +0000
committerkelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68>2010-08-12 13:25:51 +0000
commit6d026dccead1a6a189247f47d71794ceca8ea64c (patch)
tree4dc975c6efdfeb6c939bb503681e69dc04afa9c5 /sca-java-2.x/trunk
parent710176c856a8aedcfb88354a9653ab130d0e0d23 (diff)
update test case to use individual launchers
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@984762 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r--sca-java-2.x/trunk/samples/launcher-embedded-jse/src/test/java/launcher/LauncherTestCase.java14
1 files changed, 4 insertions, 10 deletions
diff --git a/sca-java-2.x/trunk/samples/launcher-embedded-jse/src/test/java/launcher/LauncherTestCase.java b/sca-java-2.x/trunk/samples/launcher-embedded-jse/src/test/java/launcher/LauncherTestCase.java
index 33159dc469..6bbbe32a7f 100644
--- a/sca-java-2.x/trunk/samples/launcher-embedded-jse/src/test/java/launcher/LauncherTestCase.java
+++ b/sca-java-2.x/trunk/samples/launcher-embedded-jse/src/test/java/launcher/LauncherTestCase.java
@@ -27,15 +27,9 @@ public class LauncherTestCase {
@Test
public void testContributionBindingSCACalculator() throws Exception {
- SampleJSELauncher.main(new String[] {"contribution-binding-sca-calculator"});
+ JSELauncherBindingSCACalculator.main(null);
}
-
-/* replaced by call to specific launcher
- @Test
- public void testContributionBindingWSCalculator() throws Exception {
- SampleJSELauncher.main(new String[] {"contribution-binding-ws-calculator"});
- }
-*/
+
@Test
public void testContributionBindingWSCalculator() throws Exception {
@@ -44,11 +38,11 @@ public class LauncherTestCase {
@Test
public void testContributionBindingRMICalculator() throws Exception {
- SampleJSELauncher.main(new String[] {"contribution-binding-rmi-calculator"});
+ JSELauncherBindingRMICalculator.main(null);
}
@Test
public void testContributionImplementationJavaCalculator() throws Exception {
- SampleJSELauncher.main(new String[] {"contribution-implementation-java-calculator"});
+ JSELauncherImplementationJavaCalculator.main(null);
}
}