Author: slaws
Date: Mon Jun  6 13:44:58 2011
New Revision: 1132639

URL: http://svn.apache.org/viewvc?rev=1132639&view=rev
Log:
TUSCANY-3867 - Fix up the test messages so they are easy to compare for 
correctness and add the test to the build

Modified:
    
tuscany/sca-java-2.x/trunk/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java
    tuscany/sca-java-2.x/trunk/testing/itest/pom.xml

Modified: 
tuscany/sca-java-2.x/trunk/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java?rev=1132639&r1=1132638&r2=1132639&view=diff
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java
 (original)
+++ 
tuscany/sca-java-2.x/trunk/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java
 Mon Jun  6 13:44:58 2011
@@ -24,6 +24,8 @@ public class StatusImpl {
     public static String statusString = "";
     
     public static void appendStatus(String event, String location){
+        // remove any addresses from the strings
+        location = location.replaceAll("\\(@.*Endpoint", "Endpoint");
         statusString += event + " - " + location + "\n";
     }
 

Modified: tuscany/sca-java-2.x/trunk/testing/itest/pom.xml
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/pom.xml?rev=1132639&r1=1132638&r2=1132639&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/testing/itest/pom.xml Mon Jun  6 13:44:58 2011
@@ -60,6 +60,7 @@
                 <module>interfaces</module>
                 <module>java-lifecycle-exceptions</module>
                 <module>jms</module>
+                <module>lifecycle</module>
                 <module>nodes</module>
                 <module>node-launcher-equinox</module>
                 <module>oneway</module>


Reply via email to