(self)
| 275 | """Tests for reference counting behavior.""" |
| 276 | |
| 277 | def setUp(self): |
| 278 | self.cache = ThreadSafeLRUPromptCache(max_size=10) |
| 279 | |
| 280 | def test_multiple_inserts_increment_count(self): |
| 281 | """Inserting same tokens multiple times should increment count.""" |
nothing calls this directly
no test coverage detected