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