()
| 1264 | } |
| 1265 | |
| 1266 | @Test |
| 1267 | public void concat3() { |
| 1268 | Maybe.concat(Maybe.just(1), Maybe.just(2), Maybe.just(3)) |
| 1269 | .test() |
| 1270 | .assertResult(1, 2, 3); |
| 1271 | } |
| 1272 | |
| 1273 | @Test |
| 1274 | public void concat3Empty() { |
nothing calls this directly
no test coverage detected