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