You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.eclipse.paho.client.mqttv3.test/src/test/java/org/eclipse/paho/client/mqttv3/test/SendReceiveAsyncTest.java
+79Lines changed: 79 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -656,4 +656,83 @@ public void testConnectTimeout() throws Exception {
656
656
657
657
log.exiting(className, methodName);
658
658
}
659
+
660
+
/**
661
+
* Test tokens for QoS 0 being 'lost'
662
+
*/
663
+
@Test
664
+
publicvoidtestQoS0Tokens() {
665
+
finalStringmethodName = Utility.getMethodName();
666
+
LoggingUtilities.banner(log, cclass, methodName);
667
+
log.entering(className, methodName);
668
+
669
+
inttokenCount = 1000; // how many QoS 0 tokens shall we track?
0 commit comments