You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2020/05/13 14:26:13 UTC

[cxf] branch master updated: Add extra log info to test name to determine if it's targetting stax port or not

This is an automated email from the ASF dual-hosted git repository.

dkulp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new d6747e9  Add extra log info to test name to determine if it's targetting stax port or not
d6747e9 is described below

commit d6747e93b419e21812d616350ab50ae452fd61cb
Author: Daniel Kulp <dk...@apache.org>
AuthorDate: Wed May 13 08:51:01 2020 -0400

    Add extra log info to test name to determine if it's targetting stax port or not
---
 .../src/test/java/org/apache/cxf/systest/ws/wssc/WSSCTest.java        | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/wssc/WSSCTest.java b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/wssc/WSSCTest.java
index b3cbd65..8859e51 100644
--- a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/wssc/WSSCTest.java
+++ b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/wssc/WSSCTest.java
@@ -89,7 +89,9 @@ public class WSSCTest extends AbstractBusClientServerTestBase {
             clearAction = a;
         }
         public String toString() {
-            return prefix + ":" + port + ":" + (streaming ? "streaming" : "dom")
+            return prefix + ":" 
+                + port + ((port == STAX_PORT || port == STAX_PORT2) ? "(stax)" : "") 
+                + ":" + (streaming ? "streaming" : "dom")
                 + (clearAction ? "/no SOAPAction" : "");
         }
     }