()
| 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() { |
nothing calls this directly
no test coverage detected