You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2009/04/14 14:27:39 UTC

svn commit: r764755 - /tuscany/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java

Author: antelder
Date: Tue Apr 14 12:27:39 2009
New Revision: 764755

URL: http://svn.apache.org/viewvc?rev=764755&view=rev
Log:
Add a println of the problem to see what it says when running on the continuum machine as the test is assing for me

Modified:
    tuscany/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java

Modified: tuscany/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java?rev=764755&r1=764754&r2=764755&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java (original)
+++ tuscany/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java Tue Apr 14 12:27:39 2009
@@ -55,6 +55,7 @@
     	Problem problem = ((DefaultMonitorImpl)monitor).getLastLoggedProblem();
         
     	assertNotNull(problem);
+        System.out.println("AttributeUnrecognizedNamespaceTestCase problem:" +  problem.getMessageId());
         assertEquals("AttributeUnrecognizedNamespace", problem.getMessageId());
     }
 }