diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-14 12:27:39 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-14 12:27:39 +0000 |
commit | cba3a3785a014f9d6619c4e095324cbff9c24fb1 (patch) | |
tree | e03cb34868ed09fce49ef5a12aee9f6e87dbd8aa | |
parent | 16c0386c4ac6edd757ccb44f966a09dd425156a2 (diff) |
Add a println of the problem to see what it says when running on the continuum machine as the test is assing for me
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@764755 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java b/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java index 96bb9a7a35..cbc9e199e3 100644 --- a/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java +++ b/branches/sca-java-1.x/itest/validation/src/test/java/impl/bpel/AttributeUnrecognizedNamespaceTestCase.java @@ -55,6 +55,7 @@ public class AttributeUnrecognizedNamespaceTestCase extends TestCase { Problem problem = ((DefaultMonitorImpl)monitor).getLastLoggedProblem(); assertNotNull(problem); + System.out.println("AttributeUnrecognizedNamespaceTestCase problem:" + problem.getMessageId()); assertEquals("AttributeUnrecognizedNamespace", problem.getMessageId()); } } |