(t *testing.T)
| 148 | } |
| 149 | |
| 150 | func Test_Observable_AverageFloat64_Parallel_Error(t *testing.T) { |
| 151 | defer goleak.VerifyNone(t) |
| 152 | ctx, cancel := context.WithCancel(context.Background()) |
| 153 | defer cancel() |
| 154 | Assert(ctx, t, testObservable(ctx, "x").AverageFloat64(WithContext(ctx), WithCPUPool()), |
| 155 | HasAnError()) |
| 156 | } |
| 157 | |
| 158 | func Test_Observable_AverageInt(t *testing.T) { |
| 159 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…