Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SuperElastix
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirrors
SuperElastix
Commits
e20c0df7
Commit
e20c0df7
authored
9 years ago
by
Floris Berendsen
Browse files
Options
Downloads
Patches
Plain Diff
BUG: RegistrationItkv4Test.ImagesOnly wasn't executed
parent
498c135c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Modules/Core/ComponentInterface/src/ComponentSelector.cxx
+2
-2
2 additions, 2 deletions
Modules/Core/ComponentInterface/src/ComponentSelector.cxx
Testing/Unit/elxRegistrationItkv4Test.cxx
+1
-1
1 addition, 1 deletion
Testing/Unit/elxRegistrationItkv4Test.cxx
with
3 additions
and
3 deletions
Modules/Core/ComponentInterface/src/ComponentSelector.cxx
+
2
−
2
View file @
e20c0df7
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
Testing/Unit/elxRegistrationItkv4Test.cxx
+
1
−
1
View file @
e20c0df7
...
@@ -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
());
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment