(self)
| 176 | """Tests for no match behavior.""" |
| 177 | |
| 178 | def setUp(self): |
| 179 | self.cache = ThreadSafeLRUPromptCache(max_size=10) |
| 180 | |
| 181 | def test_empty_cache_returns_none(self): |
| 182 | """Empty cache should return None and all tokens as remaining.""" |
nothing calls this directly
no test coverage detected