Changeset e45c1d for src/Parameters/unittests/DiscreteValueTest.cpp
- Timestamp:
- Jun 13, 2012, 5:39:01 PM (13 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 7951b9
- Parents:
- e5d7970
- git-author:
- Frederik Heber <heber@…> (05/09/12 18:40:56)
- git-committer:
- Frederik Heber <heber@…> (06/13/12 17:39:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/unittests/DiscreteValueTest.cpp
re5d7970 re45c1d 24 24 #include <cppunit/ui/text/TestRunner.h> 25 25 26 #include "Parameters/ParameterExceptions.hpp" 26 27 #include "Parameters/Value.hpp" 27 28 … … 128 129 // adding same value, throws assertion 129 130 const size_t size_before = dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).getValidValues().size(); 130 #ifndef NDEBUG131 131 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 132 132 for (int i=1; i<=6;++i) 133 CPPUNIT_ASSERT_THROW(dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).appendValidValue(i), Assert::AssertionFailure); 134 #endif 133 CPPUNIT_ASSERT_THROW(dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).appendValidValue(i), ParameterValidatorException); 135 134 CPPUNIT_ASSERT_EQUAL( size_before, dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).getValidValues().size() ); 136 135 … … 157 156 158 157 // unset calling of get, throws 159 #ifndef NDEBUG 160 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 161 CPPUNIT_ASSERT_THROW(test.get(), Assert::AssertionFailure); 162 #endif 158 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 159 CPPUNIT_ASSERT_THROW(test.get(), ParameterValueException); 163 160 164 161 // setting invalid, throws 165 #ifndef NDEBUG 166 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 167 CPPUNIT_ASSERT_THROW(test.set(4), Assert::AssertionFailure); 168 #endif 169 #ifndef NDEBUG 170 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 171 CPPUNIT_ASSERT_THROW(test.set(0), Assert::AssertionFailure); 172 #endif 162 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 163 CPPUNIT_ASSERT_THROW(test.set(4), ParameterValueException); 164 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 165 CPPUNIT_ASSERT_THROW(test.set(0), ParameterValueException); 173 166 174 167 // checking all valid ones … … 189 182 190 183 // unset calling of get, throws 191 #ifndef NDEBUG 192 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 193 CPPUNIT_ASSERT_THROW(test.getAsString(), Assert::AssertionFailure); 194 #endif 184 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 185 CPPUNIT_ASSERT_THROW(test.getAsString(), ParameterValueException); 195 186 196 187 // setting invalid, throws 197 #ifndef NDEBUG 198 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 199 CPPUNIT_ASSERT_THROW(test.setAsString(toString(4)), Assert::AssertionFailure); 200 #endif 201 #ifndef NDEBUG 202 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 203 CPPUNIT_ASSERT_THROW(test.setAsString(toString(0)), Assert::AssertionFailure); 204 #endif 188 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 189 CPPUNIT_ASSERT_THROW(test.setAsString(toString(4)), ParameterValueException); 190 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 191 CPPUNIT_ASSERT_THROW(test.setAsString(toString(0)), ParameterValueException); 205 192 206 193 // checking all valid ones
Note:
See TracChangeset
for help on using the changeset viewer.