(t *testing.T)
| 903 | } |
| 904 | |
| 905 | func Test_Observable_IgnoreElements_Parallel_Error(t *testing.T) { |
| 906 | defer goleak.VerifyNone(t) |
| 907 | ctx, cancel := context.WithCancel(context.Background()) |
| 908 | defer cancel() |
| 909 | obs := testObservable(ctx, 1, errFoo, 3).IgnoreElements(WithCPUPool()) |
| 910 | Assert(ctx, t, obs, IsEmpty(), HasError(errFoo)) |
| 911 | } |
| 912 | |
| 913 | func Test_Observable_GroupBy(t *testing.T) { |
| 914 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…