(id string, entry *PreparedEntry)
| 480 | } |
| 481 | |
| 482 | func (t *testPrepareCache) Store(id string, entry *PreparedEntry) { |
| 483 | t.cache.Store(id, entry) |
| 484 | } |
| 485 | |
| 486 | func (t *testPrepareCache) Load(id string) (entry *PreparedEntry, ok bool) { |
| 487 | if val, ok := t.cache.Load(id); ok { |
no test coverage detected