(t *testing.T)
| 153 | } |
| 154 | |
| 155 | func TestFilesystemCacheMiss(t *testing.T) { |
| 156 | c := newTestCache(t) |
| 157 | defer c.Close() |
| 158 | cacheMissHelper(t, c) |
| 159 | } |
| 160 | |
| 161 | // metatest used for both filesystem and redis Cache |
| 162 | func cacheMissHelper(t *testing.T, c Cache) { |
nothing calls this directly
no test coverage detected