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
Assert.IsTrue(onMessageResult,"The message handler should have been called.");
40
+
Assert.IsFalse(onErrorCalled,"onError should not have been called when a MessageLostLock exception is thrown from onMessage when the transport is in receiveOnly mode.");
41
+
Assert.IsNull(criticalErrorDetails,$"Should not invoke critical error for {nameof(ServiceBusException)}");
Assert.IsTrue(onMessageResult,"The message handler should have been called.");
74
+
Assert.IsTrue(onErrorCalled,"onError should have been called when a MessageLostLock exception is thrown from onMessage when the transport is not receiveOnly mode.");
75
+
Assert.IsNull(criticalErrorDetails,$"Should not invoke critical error for {nameof(ServiceBusException)}");
0 commit comments