| 143 | } |
| 144 | |
| 145 | void TestSetProperty() |
| 146 | { |
| 147 | mitk::Label::Pointer label = mitk::Label::New(); |
| 148 | |
| 149 | mitk::StringProperty::Pointer prop = mitk::StringProperty::New("abc"); |
| 150 | label->SetProperty("cba", prop); |
| 151 | std::string propVal; |
| 152 | label->GetStringProperty("cba", propVal); |
| 153 | CPPUNIT_ASSERT_MESSAGE("Initial label has wrong value", propVal.compare("abc") == 0); |
| 154 | } |
| 155 | |
| 156 | void TestAlgorithmFunctions() |
| 157 | { |
nothing calls this directly
no test coverage detected