(t *testing.T)
| 213 | } |
| 214 | |
| 215 | func TestBuildCacheKey(t *testing.T) { |
| 216 | _, err := BuildCacheKey("", "") |
| 217 | assert.Error(t, err) |
| 218 | _, err = BuildCacheKey("foo", "bar") |
| 219 | assert.NoError(t, err) |
| 220 | } |
nothing calls this directly
no test coverage detected