You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2016/09/26 15:36:46 UTC

cxf git commit: CXF-5855: fixed SSE broadcaster test case order, future investigation required (Tomcat)

Repository: cxf
Updated Branches:
  refs/heads/master 05858853a -> 1d2ff721e


CXF-5855: fixed SSE broadcaster test case order, future investigation required (Tomcat)


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/1d2ff721
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/1d2ff721
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/1d2ff721

Branch: refs/heads/master
Commit: 1d2ff721ef4d63b86035238516afdf1a82855bd9
Parents: 0585885
Author: reta <dr...@gmail.com>
Authored: Mon Sep 26 11:36:25 2016 -0400
Committer: reta <dr...@gmail.com>
Committed: Mon Sep 26 11:36:25 2016 -0400

----------------------------------------------------------------------
 .../cxf/systest/jaxrs/sse/tomcat/TomcatBroadcasterTest.java      | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/1d2ff721/systests/rs-sse/src/test/java/org/apache/cxf/systest/jaxrs/sse/tomcat/TomcatBroadcasterTest.java
----------------------------------------------------------------------
diff --git a/systests/rs-sse/src/test/java/org/apache/cxf/systest/jaxrs/sse/tomcat/TomcatBroadcasterTest.java b/systests/rs-sse/src/test/java/org/apache/cxf/systest/jaxrs/sse/tomcat/TomcatBroadcasterTest.java
index a22b4bf..e5f88e5 100644
--- a/systests/rs-sse/src/test/java/org/apache/cxf/systest/jaxrs/sse/tomcat/TomcatBroadcasterTest.java
+++ b/systests/rs-sse/src/test/java/org/apache/cxf/systest/jaxrs/sse/tomcat/TomcatBroadcasterTest.java
@@ -22,8 +22,11 @@ package org.apache.cxf.systest.jaxrs.sse.tomcat;
 import org.apache.cxf.jaxrs.model.AbstractResourceInfo;
 import org.apache.cxf.systest.jaxrs.sse.AbstractBroadcasterSseTest;
 import org.junit.BeforeClass;
+import org.junit.FixMethodOrder;
 import org.junit.Ignore;
+import org.junit.runners.MethodSorters;
 
+@FixMethodOrder(MethodSorters.JVM)
 public class TomcatBroadcasterTest extends AbstractBroadcasterSseTest {  
     @Ignore
     public static class EmbeddedTomcatServer extends AbstractTomcatServer {
@@ -45,5 +48,4 @@ public class TomcatBroadcasterTest extends AbstractBroadcasterSseTest {
     protected int getPort() {
         return EmbeddedTomcatServer.PORT;
     }
-
 }