(t *testing.T)
| 19 | var testingKVList *caches.KVFileList |
| 20 | |
| 21 | func testOpenKVFileList(t *testing.T) *caches.KVFileList { |
| 22 | var list = caches.NewKVFileList(Tea.Root + "/data/stores/cache-stores") |
| 23 | err := list.Init() |
| 24 | if err != nil { |
| 25 | t.Fatal(err) |
| 26 | } |
| 27 | |
| 28 | testingKVList = list |
| 29 | return list |
| 30 | } |
| 31 | |
| 32 | func TestNewKVFileList(t *testing.T) { |
| 33 | var list = testOpenKVFileList(t) |
no test coverage detected