Skip to content
Snippets Groups Projects
Commit e20c0df7 authored by Floris Berendsen's avatar Floris Berendsen
Browse files

BUG: RegistrationItkv4Test.ImagesOnly wasn't executed

parent 498c135c
No related branches found
No related tags found
No related merge requests found
...@@ -80,12 +80,12 @@ ComponentSelector::NumberOfComponentsType ComponentSelector::UpdatePossibleCompo ...@@ -80,12 +80,12 @@ ComponentSelector::NumberOfComponentsType ComponentSelector::UpdatePossibleCompo
message << "Too many criteria for component. There is no component in our database that fulfills this set of criteria: " << std::endl; message << "Too many criteria for component. There is no component in our database that fulfills this set of criteria: " << std::endl;
for (CriteriaType::const_iterator criterion = this->m_Criteria.begin(); criterion != this->m_Criteria.cend(); ++criterion) for (CriteriaType::const_iterator criterion = this->m_Criteria.begin(); criterion != this->m_Criteria.cend(); ++criterion)
{ {
message << " " << criterion->first << " : {"; message << " " << criterion->first << " : { ";
for (auto const & criterionValue : criterion->second) // auto&& preferred? for (auto const & criterionValue : criterion->second) // auto&& preferred?
{ {
message << criterionValue << " "; message << criterionValue << " ";
} }
message << " }" << std::endl; message << "}" << std::endl;
} }
std::cout << message.str(); std::cout << message.str();
......
...@@ -108,7 +108,7 @@ TEST_F(RegistrationItkv4Test, ImagesOnly) ...@@ -108,7 +108,7 @@ TEST_F(RegistrationItkv4Test, ImagesOnly)
bool allUniqueComponents; bool allUniqueComponents;
EXPECT_NO_THROW(allUniqueComponents = overlord->Configure()); EXPECT_NO_THROW(allUniqueComponents = overlord->Configure());
EXPECT_TRUE(allUniqueComponents); EXPECT_TRUE(allUniqueComponents);
//EXPECT_NO_THROW(overlord->Execute()); EXPECT_NO_THROW(overlord->Execute());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment