(t *testing.T)
| 374 | } |
| 375 | |
| 376 | func Test_Observable_Count_Parallel(t *testing.T) { |
| 377 | defer goleak.VerifyNone(t) |
| 378 | ctx, cancel := context.WithCancel(context.Background()) |
| 379 | defer cancel() |
| 380 | Assert(ctx, t, Range(1, 10000).Count(WithCPUPool()), |
| 381 | HasItem(int64(10000))) |
| 382 | } |
| 383 | |
| 384 | // FIXME |
| 385 | //func Test_Observable_Debounce(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…