| 25 | Compomer* ptr = nullptr; |
| 26 | Compomer* nullPointer = nullptr; |
| 27 | START_SECTION(Compomer()) |
| 28 | { |
| 29 | ptr = new Compomer(); |
| 30 | TEST_NOT_EQUAL(ptr, nullPointer) |
| 31 | } |
| 32 | END_SECTION |
| 33 | |
| 34 | START_SECTION(~Compomer()) |
nothing calls this directly
no test coverage detected