(t *testing.T)
| 213 | } |
| 214 | |
| 215 | func Test_Connectable_IterableSlice_Single(t *testing.T) { |
| 216 | defer goleak.VerifyNone(t) |
| 217 | ctx, cancel := context.WithCancel(context.Background()) |
| 218 | defer cancel() |
| 219 | obs := &ObservableImpl{iterable: newSliceIterable([]Item{Of(1), Of(2), Of(3)}, |
| 220 | WithPublishStrategy(), WithContext(ctx))} |
| 221 | testConnectableSingle(t, obs) |
| 222 | } |
| 223 | |
| 224 | func Test_Connectable_IterableSlice_Composed(t *testing.T) { |
| 225 | defer goleak.VerifyNone(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…