| 13 | #include <mitkTestingMacros.h> |
| 14 | |
| 15 | static void TestAddVertex() |
| 16 | { |
| 17 | mitk::ContourModelSet::Pointer contourSet = mitk::ContourModelSet::New(); |
| 18 | |
| 19 | mitk::ContourModel::Pointer contour = mitk::ContourModel::New(); |
| 20 | |
| 21 | contourSet->AddContourModel(contour); |
| 22 | |
| 23 | MITK_TEST_CONDITION(contourSet->GetSize() > 0, "Add a contour, size increased"); |
| 24 | } |
| 25 | |
| 26 | static void TestRemoveContourAtIndex() |
| 27 | { |
no test coverage detected