(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestSelectOnInvalid(t *testing.T) { |
| 48 | Select([]SelectCase{ |
| 49 | { |
| 50 | Dir: SelectRecv, |
| 51 | Chan: Value{}, |
| 52 | }, { |
| 53 | Dir: SelectSend, |
| 54 | Chan: Value{}, |
| 55 | Send: ValueOf(1), |
| 56 | }, { |
| 57 | Dir: SelectDefault, |
| 58 | }, |
| 59 | }) |
| 60 | } |
| 61 | |
| 62 | func TestStructOfDirectIface(t *testing.T) { |
| 63 | t.Skip("reflect.Value.InterfaceData is not supported by GopherJS.") |
nothing calls this directly
no test coverage detected
searching dependent graphs…