(t *testing.T, expected interface{}, xval string, ff interface{})
| 376 | } |
| 377 | |
| 378 | func testExpectedXVal(t *testing.T, expected interface{}, xval string, ff interface{}) { |
| 379 | testExpectedXValBare(t, expected, `"`+xval+`"`, ff) |
| 380 | } |
| 381 | |
| 382 | func testExpectedError(t *testing.T, expected error, xval string, ff json.Unmarshaler) { |
| 383 | buf := []byte(`{"X":` + xval + `}`) |
no test coverage detected
searching dependent graphs…