| 313 | TEST_F(TestCappedMemoryPool, MemoryTracking) { this->TestMemoryTracking(); } |
| 314 | |
| 315 | TEST_F(TestCappedMemoryPool, OOM) { |
| 316 | // CappedMemoryPool rejects the huge allocation without hitting the underlying |
| 317 | // allocator, so this should work even under Address Sanitizer. |
| 318 | this->TestOOM(); |
| 319 | } |
| 320 | |
| 321 | TEST_F(TestCappedMemoryPool, Reallocate) { this->TestReallocate(); } |
| 322 |
nothing calls this directly
no test coverage detected