(t *testing.T)
| 71 | } |
| 72 | |
| 73 | func TestRedisCacheAddGet(t *testing.T) { |
| 74 | c := getRedisCache(t) |
| 75 | defer func() { |
| 76 | c.Close() |
| 77 | }() |
| 78 | cacheAddGetHelper(t, c) |
| 79 | } |
| 80 | |
| 81 | func TestRedisCacheMiss(t *testing.T) { |
| 82 | c := getRedisCache(t) |
nothing calls this directly
no test coverage detected