File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
test/src/com/rabbitmq/client/test Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ public static TestSuite suite() {
4343 suite .addTest (AMQConnectionTest .suite ());
4444 suite .addTest (ValueOrExceptionTest .suite ());
4545 suite .addTest (BrokenFramesTest .suite ());
46- suite .addTestSuite (Bug20004Test .class );
4746 return suite ;
4847 }
4948}
Original file line number Diff line number Diff line change 2828//
2929// Contributor(s): ______________________________________.
3030//
31- package com .rabbitmq .client .test ;
31+ package com .rabbitmq .client .test . functional ;
3232
3333import java .io .IOException ;
3434
35- import com .rabbitmq .client .test .functional .BrokerTestCase ;
36-
3735/**
3836 * Test for bug 20004 - deadlock through internal synchronization on
39- * the channel object.
37+ * the channel object. This is more properly a unit test, but since it
38+ * requires a connection to a broker, it's grouped with the functional
39+ * tests.
4040 */
4141public class Bug20004Test extends BrokerTestCase {
4242 public Exception caughtException = null ;
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ public static TestSuite suite() {
4646 suite .addTestSuite (RequeueOnChannelClose .class );
4747 suite .addTestSuite (DurableOnTransient .class );
4848 suite .addTestSuite (NoRequeueOnCancel .class );
49+ suite .addTestSuite (Bug20004Test .class );
4950 return suite ;
5051 }
5152}
You can’t perform that action at this time.
0 commit comments