| 188 | MITK_TEST_CONDITION(interpolation == myMP->GetInterpolation(), "Testing if a Interpolation was set correctly") |
| 189 | } |
| 190 | void testSetRepresentation() |
| 191 | { |
| 192 | myMP = mitk::Material::New(); |
| 193 | mitk::Material::RepresentationType representation = mitk::Material::Wireframe; |
| 194 | myMP->SetRepresentation(representation); |
| 195 | MITK_TEST_CONDITION(representation == myMP->GetRepresentation(), "Testing if a Representation was set correctly") |
| 196 | } |
| 197 | |
| 198 | void testSetLineWidth() |
| 199 | { |
no test coverage detected