(t *testing.T)
| 185 | } |
| 186 | |
| 187 | func TestMetaFile_RemoveAll(t *testing.T) { |
| 188 | mFile, err := bfs.OpenMetaFile("testdata/test.m", &sync.RWMutex{}) |
| 189 | if err != nil { |
| 190 | t.Fatal(err) |
| 191 | } |
| 192 | err = mFile.RemoveAll() |
| 193 | if err != nil { |
| 194 | t.Fatal(err) |
| 195 | } |
| 196 | } |
nothing calls this directly
no test coverage detected