(t *testing.T)
| 95 | } |
| 96 | |
| 97 | func Test_Observable_AverageFloat32_Parallel_Empty(t *testing.T) { |
| 98 | defer goleak.VerifyNone(t) |
| 99 | ctx, cancel := context.WithCancel(context.Background()) |
| 100 | defer cancel() |
| 101 | Assert(ctx, t, Empty().AverageFloat32(WithContext(ctx), WithCPUPool()), |
| 102 | HasItem(0)) |
| 103 | } |
| 104 | |
| 105 | func Test_Observable_AverageFloat32_Parallel_Error(t *testing.T) { |
| 106 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…