(t *testing.T)
| 84 | } |
| 85 | |
| 86 | func TestNewCacheNameExampleCache(t *testing.T) { |
| 87 | c := NewCacheNameExampleCache(&database.CacheType{ |
| 88 | CType: "memory", |
| 89 | }) |
| 90 | assert.NotNil(t, c) |
| 91 | |
| 92 | defer func() { |
| 93 | _ = recover() |
| 94 | }() |
| 95 | c = NewCacheNameExampleCache(&database.CacheType{ |
| 96 | CType: "", |
| 97 | }) |
| 98 | } |
nothing calls this directly
no test coverage detected