(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestPipe(t *testing.T) { |
| 54 | a := NewNativeChannel(None) |
| 55 | b := NewNativeChannel(None) |
| 56 | |
| 57 | Pipe(a, b) |
| 58 | |
| 59 | testChannelPair(t, "pipe", a, b) |
| 60 | } |
| 61 | |
| 62 | func TestWeakPipe(t *testing.T) { |
| 63 | a := NewNativeChannel(None) |
nothing calls this directly
no test coverage detected
searching dependent graphs…