You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2010/09/29 16:01:19 UTC

svn commit: r1002634 - /tuscany/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java

Author: slaws
Date: Wed Sep 29 14:01:18 2010
New Revision: 1002634

URL: http://svn.apache.org/viewvc?rev=1002634&view=rev
Log:
Add all of the launchers into the test case

Modified:
    tuscany/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java

Modified: tuscany/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java?rev=1002634&r1=1002633&r2=1002634&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java (original)
+++ tuscany/sca-java-2.x/trunk/samples/running-tuscany/embedded-jse/src/test/java/launcher/LauncherTestCase.java Wed Sep 29 14:01:18 2010
@@ -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);
     }     
 }