(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func Test_Observable_All_Parallel_Error(t *testing.T) { |
| 60 | defer goleak.VerifyNone(t) |
| 61 | ctx, cancel := context.WithCancel(context.Background()) |
| 62 | defer cancel() |
| 63 | Assert(ctx, t, testObservable(ctx, 1, errFoo, 3).All(predicateAllInt, WithContext(ctx), WithCPUPool()), |
| 64 | HasError(errFoo)) |
| 65 | } |
| 66 | |
| 67 | func Test_Observable_AverageFloat32(t *testing.T) { |
| 68 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…