(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestLRUCache_2(t *testing.T) { |
| 24 | cache := Constructor(1) |
| 25 | cache.Put(2, 1) |
| 26 | assert.Equal(t, 1, cache.Get(2)) |
| 27 | } |
| 28 | |
| 29 | /* |
| 30 | ["LRUCache","put","get","put","get","get"] |
nothing calls this directly
no test coverage detected