(self)
| 220 | """Tests for LRU eviction behavior.""" |
| 221 | |
| 222 | def setUp(self): |
| 223 | self.cache = ThreadSafeLRUPromptCache(max_size=3) |
| 224 | |
| 225 | def test_evicts_oldest_when_full(self): |
| 226 | """Should evict least recently used entry when capacity exceeded.""" |
nothing calls this directly
no test coverage detected