(t *testing.T, err error)
| 82 | } |
| 83 | |
| 84 | func assertUnmarshalNoError(t *testing.T, err error) { |
| 85 | if err != nil { |
| 86 | t.Errorf("json unmarshalling failed: %s", err) |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | func getLen(x interface{}) (ok bool, length int) { |
| 91 | v := reflect.ValueOf(x) |
no outgoing calls
no test coverage detected
searching dependent graphs…