(self)
| 22 | """Tests for exact match cache behavior.""" |
| 23 | |
| 24 | def setUp(self): |
| 25 | self.cache = ThreadSafeLRUPromptCache(max_size=10) |
| 26 | |
| 27 | def test_exact_match_returns_cache_and_empty_remaining(self): |
| 28 | """Exact match should return the cache with no remaining tokens.""" |
nothing calls this directly
no test coverage detected