(Integer v)
| 103 | |
| 104 | flowFlatMapFlowable1 = fsource.flatMap(new Function<Integer, Publisher<Integer>>() { |
| 105 | @Override |
| 106 | public Publisher<Integer> apply(Integer v) { |
| 107 | return Flowable.just(v); |
| 108 | } |
| 109 | }); |
| 110 | |
| 111 | flowFlatMapFlowable0 = fsource.flatMap(new Function<Integer, Publisher<Integer>>() { |
nothing calls this directly
no test coverage detected