File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
test/src/com/rabbitmq/client/test/functional Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ public void testDeadLetterExchangeDeleteTwice()
177177 channel .queueDelete (TEST_QUEUE_NAME );
178178 try {
179179 channel .queueDelete (TEST_QUEUE_NAME );
180+ fail ();
180181 } catch (IOException ex ) {
181182 checkShutdownSignal (AMQP .NOT_FOUND , ex );
182183 }
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ public void testMessageLimitGlobalFails()
9090 {
9191 try {
9292 channel .basicQos (0 , 1 , true );
93+ fail ("basic.qos{global=false} should not be supported" );
9394 } catch (IOException ioe ) {
9495 checkShutdownSignal (AMQP .NOT_IMPLEMENTED , ioe );
9596 }
@@ -100,6 +101,7 @@ public void testMessageLimitPrefetchSizeFails()
100101 {
101102 try {
102103 channel .basicQos (1000 , 0 , false );
104+ fail ("basic.qos{pretfetch_size=NonZero} should not be supported" );
103105 } catch (IOException ioe ) {
104106 checkShutdownSignal (AMQP .NOT_IMPLEMENTED , ioe );
105107 }
You can’t perform that action at this time.
0 commit comments