File tree Expand file tree Collapse file tree 1 file changed +1
-19
lines changed
language-adaptors/rxjava-kotlin/src/test/kotlin/rx/lang/kotlin Expand file tree Collapse file tree 1 file changed +1
-19
lines changed Original file line number Diff line number Diff line change @@ -84,24 +84,6 @@ public class ExtensionTests : KotlinTests() {
8484 verify(a, times(0 ))!! .error(any(javaClass<Exception >()))
8585 }
8686
87- [Test ]
88- public fun testMergeDelayError () {
89- Triple (listOf (1 , 2 , 3 ).asObservable(),
90- Triple (6 .asObservable(),
91- NullPointerException ().asObservable<Int >(),
92- 7 .asObservable()
93- ).merge(),
94- listOf (4 , 5 ).asObservable()
95- ).mergeDelayError().subscribe(received(), { e -> a!! .error(e) })
96- verify(a, times(1 ))!! .received(1 )
97- verify(a, times(1 ))!! .received(2 )
98- verify(a, times(1 ))!! .received(3 )
99- verify(a, times(1 ))!! .received(4 )
100- verify(a, times(1 ))!! .received(5 )
101- verify(a, times(1 ))!! .received(6 )
102- verify(a, times(0 ))!! .received(7 )
103- verify(a, times(1 ))!! .error(any(javaClass<NullPointerException >()))
104- }
10587
10688 [Test ]
10789 public fun testMerge () {
@@ -294,4 +276,4 @@ public class ExtensionTests : KotlinTests() {
294276 }
295277
296278 }
297- }
279+ }
You can’t perform that action at this time.
0 commit comments