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
/* we should have been called 5 times on the Observer */
380
+
InOrderinOrder = inOrder(w);
381
+
inOrder.verify(w).onNext("1a2b3a");
382
+
inOrder.verify(w).onNext("1b2b3a");
383
+
inOrder.verify(w).onNext("1b2c3a");
384
+
inOrder.verify(w).onNext("1b2d3a");
385
+
inOrder.verify(w).onNext("1b2d3b");
386
+
387
+
inOrder.verify(w, times(1)).onCompleted();
388
+
}
389
+
351
390
/**
352
391
* Testing internal private logic due to the complexity so I want to use TDD to test as a I build it rather than relying purely on the overall functionality expected by the public methods.
0 commit comments