(t *testing.T)
| 60 | } |
| 61 | |
| 62 | func TestWeakPipe(t *testing.T) { |
| 63 | a := NewNativeChannel(None) |
| 64 | b := NewNativeChannel(None) |
| 65 | |
| 66 | WeakPipe(a, b) |
| 67 | |
| 68 | testChannelPair(t, "pipe", a, b) |
| 69 | } |
| 70 | |
| 71 | func testMultiplex(t *testing.T, multi func(output SimpleInChannel, inputs ...SimpleOutChannel)) { |
| 72 | a := NewNativeChannel(None) |
nothing calls this directly
no test coverage detected
searching dependent graphs…