Skip to content

Commit

Permalink
STYLE: Conform to ITK style guidelines in test ending message
Browse files Browse the repository at this point in the history
Conform to ITK style guidelines in test ending message.
  • Loading branch information
jhlegarreta authored and dzenanz committed Sep 2, 2022
1 parent afbfcb5 commit b7a2c16
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,6 @@ itkFastMarchingNumberOfElementsStoppingCriterionTest(int, char *[])
std::cout << "Description: " << meshCriterion->GetDescription() << std::endl;


std::cout << "Test finished." << std::endl;
return EXIT_SUCCESS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,6 @@ itkMultiphaseDenseFiniteDifferenceImageFilterTest(int, char *[])
ITK_TEST_SET_GET_VALUE(reinitializeCounter, flter->GetReinitializeCounter());


std::cout << "Test finished." << std::endl;
return EXIT_SUCCESS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,6 @@ itkMultiphaseFiniteDifferenceImageFilterTest(int, char *[])
ITK_TEST_SET_GET_VALUE(elapsedIterations, filter->GetElapsedIterations());


std::cout << "Test finished." << std::endl;
return EXIT_SUCCESS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@ itkOptimizersHierarchyTest(int, char *[])
ITK_EXERCISE_BASIC_OBJECT_METHODS(cumGaussCostFunc, CumulativeGaussianCostFunction, MultipleValuedCostFunction);


std::cout << "Test passed." << std::endl;
std::cout << "Test finished." << std::endl;
return EXIT_SUCCESS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,6 @@ itkGradientDescentLineSearchOptimizerv4Test(int, char *[])
ITK_TRY_EXPECT_EXCEPTION(badOptimizer->GetCurrentPosition());


std::cout << "Test passed." << std::endl;
std::cout << "Test finished." << std::endl;
return EXIT_SUCCESS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,7 @@ itkGaussianMembershipFunctionTest(int, char *[])
return EXIT_FAILURE;
}


std::cout << "Test finished." << std::endl;
return EXIT_SUCCESS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ itkMaximumRatioDecisionRuleTest(int, char *[])
return EXIT_FAILURE;
}

std::cout << "[SUCCEEDED]" << std::endl;
std::cout << "Test finished." << std::endl;
return EXIT_SUCCESS;
}

0 comments on commit b7a2c16

Please sign in to comment.