(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestNilProvider(t *testing.T) { |
| 18 | c := newFrontendCache(nil, cache.RoleFrontendSearch, log.NewNopLogger()) |
| 19 | require.Nil(t, c) |
| 20 | } |
| 21 | |
| 22 | func TestCacheCaches(t *testing.T) { |
| 23 | expected := &tempopb.SearchTagsResponse{ |
nothing calls this directly
no test coverage detected