(t *testing.T)
| 41 | } |
| 42 | |
| 43 | func TestCacheClose(t *testing.T) { |
| 44 | for i := 0; i < 10; i++ { |
| 45 | c := newTestCache(t) |
| 46 | c.Close() |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func TestFilesystemCacheAddGet(t *testing.T) { |
| 51 | c := newTestCache(t) |
nothing calls this directly
no test coverage detected