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 2010/01/12 22:16:50 UTC

svn commit: r898520 - /cxf/trunk/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java

Author: dkulp
Date: Tue Jan 12 21:16:49 2010
New Revision: 898520

URL: http://svn.apache.org/viewvc?rev=898520&view=rev
Log:
Remove an Ignored test that I have no idea why it was ignored (log not
helpfull, my own fault), but the test also doesn't assert anything or
check any output or anything so it's a pretty useless test.

Modified:
    cxf/trunk/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java

Modified: cxf/trunk/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java?rev=898520&r1=898519&r2=898520&view=diff
==============================================================================
--- cxf/trunk/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java (original)
+++ cxf/trunk/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java Tue Jan 12 21:16:49 2010
@@ -143,50 +143,6 @@
         Thread.sleep(100);
     }
 
-    /** 
-      * Server is configured with RM interceptors, client without;
-      * Addressing interceptors are installed on either side.
-      * The (oneway) application request should be dispatched straight to the
-      * implementor.
-      */
-    @Test
-    @Ignore
-    public void testRMServerPlainClient() throws Exception {
-
-        SpringBusFactory bf = new SpringBusFactory();
-        
-        controlBus = bf.createBus();
-        BusFactory.setDefaultBus(controlBus);
-
-        ControlService cs = new ControlService();
-        control = cs.getControlPort();
-
-        assertTrue("Failed to start greeter",
-            control.startGreeter("org/apache/cxf/systest/ws/rm/rminterceptors.xml"));
-
-        greeterBus = bf.createBus("org/apache/cxf/systest/ws/rm/rminterceptors.xml");
-        BusFactory.setDefaultBus(greeterBus);
-        removeRMInterceptors(greeterBus.getOutInterceptors());
-        removeRMInterceptors(greeterBus.getOutFaultInterceptors());
-        removeRMInterceptors(greeterBus.getInInterceptors());
-        removeRMInterceptors(greeterBus.getInFaultInterceptors());
-        LOG.fine("Initialised greeter bus with addressing but without RM interceptors");
-
-        outRecorder = new OutMessageRecorder();
-        greeterBus.getOutInterceptors().add(outRecorder);
-        inRecorder = new InMessageRecorder();
-        greeterBus.getInInterceptors().add(inRecorder);
-
-        GreeterService gs = new GreeterService();
-        greeter = gs.getGreeterPort();
-        LOG.fine("Created greeter client.");
-
-        ConnectionHelper.setKeepAliveConnection(greeter, true);
-
-        greeter.greetMeOneWay("once");
-
-    }
-
     // --- tests ---
     @Test
     public void testOnewayAnonymousAcks() throws Exception {