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