MCPcopy Index your code
hub / github.com/ReactiveX/RxJava / concat4

Method concat4

src/test/java/io/reactivex/rxjava3/maybe/MaybeTest.java:1320–1325  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1318 }
1319
1320 @Test
1321 public void concat4() {
1322 Maybe.concat(Maybe.just(1), Maybe.just(2), Maybe.just(3), Maybe.just(4))
1323 .test()
1324 .assertResult(1, 2, 3, 4);
1325 }
1326
1327 @Test
1328 public void concatIterable() {

Callers

nothing calls this directly

Calls 4

concatMethod · 0.95
justMethod · 0.95
testMethod · 0.65
assertResultMethod · 0.45

Tested by

no test coverage detected