(t *testing.T)
| 140 | } |
| 141 | |
| 142 | func Test_Observable_AverageFloat64_Parallel_Empty(t *testing.T) { |
| 143 | defer goleak.VerifyNone(t) |
| 144 | ctx, cancel := context.WithCancel(context.Background()) |
| 145 | defer cancel() |
| 146 | Assert(ctx, t, Empty().AverageFloat64(WithContext(ctx), WithCPUPool()), |
| 147 | HasItem(0)) |
| 148 | } |
| 149 | |
| 150 | func Test_Observable_AverageFloat64_Parallel_Error(t *testing.T) { |
| 151 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…