(t *testing.T)
| 103 | } |
| 104 | |
| 105 | func Test_Observable_AverageFloat32_Parallel_Error(t *testing.T) { |
| 106 | defer goleak.VerifyNone(t) |
| 107 | ctx, cancel := context.WithCancel(context.Background()) |
| 108 | defer cancel() |
| 109 | Assert(ctx, t, testObservable(ctx, "x").AverageFloat32(WithContext(ctx), WithCPUPool()), |
| 110 | HasAnError()) |
| 111 | } |
| 112 | |
| 113 | func Test_Observable_AverageFloat64(t *testing.T) { |
| 114 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…