(t *testing.T)
| 263 | } |
| 264 | |
| 265 | func TestTMXBadFile(t *testing.T) { |
| 266 | err := engo.Files.LoadReaderData("bad.tmx", bytes.NewBufferString(badTMX)) |
| 267 | if err == nil { |
| 268 | t.Error("able to load bad tmx file without an error") |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | func TestTMXGrid(t *testing.T) { |
| 273 | imgbuf := bytes.NewBuffer([]byte{}) |
nothing calls this directly
no test coverage detected