(self)
| 58 | """Tests for shorter prefix match behavior.""" |
| 59 | |
| 60 | def setUp(self): |
| 61 | self.cache = ThreadSafeLRUPromptCache(max_size=10) |
| 62 | |
| 63 | def test_shorter_prefix_returns_cache_with_remaining_tokens(self): |
| 64 | """When cached prefix is shorter, return cache and remaining suffix.""" |
nothing calls this directly
no test coverage detected