| 78 | |
| 79 | void tearDown() override { pointSet = nullptr; } |
| 80 | void TestIsNotEmpty() |
| 81 | { |
| 82 | // PointSet can not be empty! |
| 83 | CPPUNIT_ASSERT_EQUAL_MESSAGE("check if the PointSet is not empty ", true, !pointSet->IsEmptyTimeStep(0)); |
| 84 | |
| 85 | /* |
| 86 | std::cout << "check if the PointSet is not empty "; |
| 87 | if (pointSet->IsEmpty(0)) |
| 88 | { |
| 89 | std::cout<<"[FAILED]"<<std::endl; |
| 90 | return EXIT_FAILURE; |
| 91 | } |
| 92 | std::cout<<"[PASSED]"<<std::endl; |
| 93 | */ |
| 94 | } |
| 95 | |
| 96 | void TestSetSelectInfo() |
| 97 | { |
nothing calls this directly
no test coverage detected