We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6ebf0c + e4d42de commit fd1544fCopy full SHA for fd1544f
test/src/com/rabbitmq/client/test/functional/DefaultExchange.java
@@ -30,6 +30,15 @@ public void testBindToDefaultExchange() throws IOException {
30
}
31
32
33
+ public void testUnbindFromDefaultExchange() throws IOException {
34
+ try {
35
+ channel.queueUnbind(queueName, "", queueName);
36
+ fail();
37
+ } catch (IOException ioe) {
38
+ checkShutdownSignal(AMQP.ACCESS_REFUSED, ioe);
39
+ }
40
41
+
42
public void testDeclareDefaultExchange() throws IOException {
43
try {
44
channel.exchangeDeclare("", "direct", true);
0 commit comments