(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func Test_Observable_Option_SimpleCapacity(t *testing.T) { |
| 46 | defer goleak.VerifyNone(t) |
| 47 | ch := Just(1)(WithBufferedChannel(5)).Observe() |
| 48 | assert.Equal(t, 5, cap(ch)) |
| 49 | } |
| 50 | |
| 51 | func Test_Observable_Option_ComposedCapacity(t *testing.T) { |
| 52 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…