(t *testing.T)
| 599 | } |
| 600 | |
| 601 | func Test_Observable_ElementAt_Error(t *testing.T) { |
| 602 | defer goleak.VerifyNone(t) |
| 603 | ctx, cancel := context.WithCancel(context.Background()) |
| 604 | defer cancel() |
| 605 | obs := testObservable(ctx, 0, 1, 2, 3, 4).ElementAt(10) |
| 606 | Assert(ctx, t, obs, IsEmpty(), HasAnError()) |
| 607 | } |
| 608 | |
| 609 | func Test_Observable_Error_NoError(t *testing.T) { |
| 610 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…