(t *testing.T)
| 155 | } |
| 156 | |
| 157 | func createTestCache(t *testing.T) *cache.Cache[string, string] { |
| 158 | t.Helper() |
| 159 | |
| 160 | return cache.CreateCache[string, string](time.Millisecond, cache.CacheProperties{ |
| 161 | SetCacheEvent: false, |
| 162 | TimeoutCacheEvent: false, |
| 163 | }) |
| 164 | } |
no test coverage detected