(t *testing.T)
| 22 | } |
| 23 | |
| 24 | func TestNativeInOutChannels(t *testing.T) { |
| 25 | ch1 := make(chan interface{}) |
| 26 | ch2 := make(chan interface{}) |
| 27 | |
| 28 | Pipe(NativeOutChannel(ch1), NativeInChannel(ch2)) |
| 29 | NativeInChannel(ch1).Close() |
| 30 | } |
| 31 | |
| 32 | func TestDeadChannel(t *testing.T) { |
| 33 | ch := NewDeadChannel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…