From 2e928c663d82c2475d67da9bd7bae7e3a87e9bd8 Mon Sep 17 00:00:00 2001 From: slaws Date: Wed, 29 Sep 2010 14:01:18 +0000 Subject: Add all of the launchers into the test case git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1002634 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/launcher/LauncherTestCase.java | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java') diff --git a/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java b/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java index 6bbbe32a7f..acef078467 100644 --- a/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java +++ b/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java @@ -24,25 +24,34 @@ import org.junit.Test; * Test sample contributions. */ public class LauncherTestCase { + + @Test + public void testBindingJSONRPCCalculator() throws Exception { + JSELauncherBindingSCACalculator.main(null); + } @Test - public void testContributionBindingSCACalculator() throws Exception { + public void testBindingSCACalculator() throws Exception { JSELauncherBindingSCACalculator.main(null); } - @Test - public void testContributionBindingWSCalculator() throws Exception { + public void testBindingWSCalculator() throws Exception { JSELauncherBindingWSCalculator.main(null); } @Test - public void testContributionBindingRMICalculator() throws Exception { + public void testBindingRMICalculator() throws Exception { JSELauncherBindingRMICalculator.main(null); } @Test - public void testContributionImplementationJavaCalculator() throws Exception { + public void testImplementationJavaCalculator() throws Exception { JSELauncherImplementationJavaCalculator.main(null); + } + + @Test + public void testImplementationScriptCalculator() throws Exception { + JSELauncherImplementationScriptCalculator.main(null); } } -- cgit v1.2.3