| 181 | } |
| 182 | |
| 183 | void testSetInterpolation() |
| 184 | { |
| 185 | myMP = mitk::Material::New(); |
| 186 | mitk::Material::InterpolationType interpolation = mitk::Material::Flat; |
| 187 | myMP->SetInterpolation(interpolation); |
| 188 | MITK_TEST_CONDITION(interpolation == myMP->GetInterpolation(), "Testing if a Interpolation was set correctly") |
| 189 | } |
| 190 | void testSetRepresentation() |
| 191 | { |
| 192 | myMP = mitk::Material::New(); |
no test coverage detected