(t *testing.T)
| 724 | } |
| 725 | |
| 726 | func Test_Observable_First_Parallel_Empty(t *testing.T) { |
| 727 | defer goleak.VerifyNone(t) |
| 728 | ctx, cancel := context.WithCancel(context.Background()) |
| 729 | defer cancel() |
| 730 | obs := Empty().First(WithCPUPool()) |
| 731 | Assert(ctx, t, obs, IsEmpty()) |
| 732 | } |
| 733 | |
| 734 | func Test_Observable_FirstOrDefault_NotEmpty(t *testing.T) { |
| 735 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…