(t *testing.T)
| 264 | } |
| 265 | |
| 266 | func Test_Observable_BufferWithCount_InputError(t *testing.T) { |
| 267 | defer goleak.VerifyNone(t) |
| 268 | ctx, cancel := context.WithCancel(context.Background()) |
| 269 | defer cancel() |
| 270 | obs := testObservable(ctx, 1, 2, 3, 4).BufferWithCount(0) |
| 271 | Assert(ctx, t, obs, HasAnError()) |
| 272 | } |
| 273 | |
| 274 | func Test_Observable_BufferWithTime_Single(t *testing.T) { |
| 275 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…