Malloc should return pointer
| 11 | |
| 12 | // Malloc should return pointer |
| 13 | void test_malloc() { |
| 14 | SafetyProfilePool pool; |
| 15 | pool.configure_pool(1024, sizeof(void*)); |
| 16 | EXPECT_TRUE(pool.malloc(24)); |
| 17 | } |
| 18 | |
| 19 | // Malloc should return pointer |
| 20 | void test_mallocs() { |
no test coverage detected