Changeset 6c05d8 for src/Parameters/unittests
- Timestamp:
- Jun 1, 2012, 3:31:25 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:
- 118f1e
- Parents:
- 7dc60a
- git-author:
- Michael Ankele <ankele@…> (04/18/12 14:02:14)
- git-committer:
- Michael Ankele <ankele@…> (06/01/12 15:31:25)
- Location:
- src/Parameters/unittests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/unittests/ContinuousParameterTest.cpp
r7dc60a r6c05d8 84 84 Parameter<int> test("intParam", *ValidIntRange); 85 85 86 // check that we throw because of unset parameter87 #ifndef NDEBUG88 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl;89 CPPUNIT_ASSERT_THROW(test.clone(), Assert::AssertionFailure);90 #endif91 92 86 // set parameter 93 87 test.set(2); -
src/Parameters/unittests/ContinuousValueTest.cpp
r7dc60a r6c05d8 60 60 61 61 // checking valid values 62 /*for (int i=1; i<=4;++i)62 for (int i=1; i<=4;++i) 63 63 CPPUNIT_ASSERT_EQUAL(true, test.isValidAsString(toString(i))); 64 64 … … 67 67 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); 68 68 for (int i=5; i<=0;++i) 69 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); */69 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); 70 70 } 71 71 … … 144 144 145 145 // setting invalid, throws 146 /*#ifndef NDEBUG146 #ifndef NDEBUG 147 147 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 148 148 CPPUNIT_ASSERT_THROW(test.setAsString(toString(5)), Assert::AssertionFailure); … … 159 159 CPPUNIT_ASSERT_EQUAL(true, test.ValueSet); 160 160 CPPUNIT_ASSERT_EQUAL(toString(i), test.getAsString()); 161 } */161 } 162 162 } 163 163 -
src/Parameters/unittests/DiscreteParameterTest.cpp
r7dc60a r6c05d8 84 84 Parameter<int> test("intParam", ValidValues); 85 85 86 // check that we throw because of unset parameter87 #ifndef NDEBUG88 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl;89 CPPUNIT_ASSERT_THROW(test.clone(), Assert::AssertionFailure);90 #endif91 92 86 // set parameter 93 87 test.set(2); -
src/Parameters/unittests/DiscreteValueTest.cpp
r7dc60a r6c05d8 82 82 83 83 // checking valid values 84 /*for (int i=1; i<=3;++i)84 for (int i=1; i<=3;++i) 85 85 CPPUNIT_ASSERT_EQUAL(true, test.isValidAsString(toString(i))); 86 86 … … 89 89 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); 90 90 for (int i=4; i<=0;++i) 91 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); */91 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); 92 92 } 93 93 … … 195 195 196 196 // setting invalid, throws 197 /*#ifndef NDEBUG197 #ifndef NDEBUG 198 198 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 199 199 CPPUNIT_ASSERT_THROW(test.setAsString(toString(4)), Assert::AssertionFailure); … … 208 208 test.setAsString(toString(i)); 209 209 CPPUNIT_ASSERT_EQUAL(toString(i), test.getAsString()); 210 } */210 } 211 211 } 212 212
Note:
See TracChangeset
for help on using the changeset viewer.