(t *testing.T)
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func TestReadFileEmptyPath(t *testing.T) { |
| 28 | if got := ReadFile("", 0, 0); got != "(empty path)" { |
| 29 | t.Fatalf("empty path handling wrong: %q", got) |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func TestReadFileMissingFile(t *testing.T) { |
nothing calls this directly
no test coverage detected