(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestReadMissingFileToBytes(t *testing.T) { |
| 13 | if _, err := ReadFileToBytes("missing"); !errors.Is(err, os.ErrNotExist) { |
| 14 | t.Error("ReadFileToBytes expected to fail on missing files") |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | func TestInequalRecordCountsInequal(t *testing.T) { |
| 19 | if CheckQRecordEquality(t, |
nothing calls this directly
no test coverage detected