()
| 1195 | } |
| 1196 | |
| 1197 | @Test |
| 1198 | public void concat2() { |
| 1199 | Maybe.concat(Maybe.just(1), Maybe.just(2)) |
| 1200 | .test() |
| 1201 | .assertResult(1, 2); |
| 1202 | } |
| 1203 | |
| 1204 | @Test |
| 1205 | public void concat2Empty() { |
nothing calls this directly
no test coverage detected