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.
1 parent 38bc04b commit db67373Copy full SHA for db67373
test/src/com/rabbitmq/client/test/functional/PerQueueTTL.java
@@ -115,6 +115,13 @@ public void testQueueRedeclareEquivalence() throws Exception {
115
}
116
117
118
+ public void testQueueRedeclareSemanticEquivalence() throws Exception {
119
+ declareQueue(TTL_QUEUE_NAME, (byte)10);
120
+ declareQueue(TTL_QUEUE_NAME, 10);
121
+ declareQueue(TTL_QUEUE_NAME, (short)10);
122
+ declareQueue(TTL_QUEUE_NAME, 10L);
123
+ }
124
+
125
/*
126
* Test messages expire when using basic get.
127
*/
0 commit comments