(t *testing.T)
| 13 | }` |
| 14 | |
| 15 | func TestLoadBytesOK(t *testing.T) { |
| 16 | data := echotest.LoadBytes(t, "testdata/test.json") |
| 17 | assert.Equal(t, []byte(testJSONContent+"\n"), data) |
| 18 | } |
| 19 | |
| 20 | func TestLoadBytes_custom(t *testing.T) { |
| 21 | data := echotest.LoadBytes(t, "testdata/test.json", func(bytes []byte) []byte { |
nothing calls this directly
no test coverage detected
searching dependent graphs…