Changeset dbb533 for src/Parameters/unittests/DiscreteValueTest.cpp
- Timestamp:
- Apr 17, 2012, 11:39:19 AM (14 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, Candidate_v1.7.0, 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:
- c513b7
- Parents:
- c68409
- git-author:
- Michael Ankele <ankele@…> (04/10/12 11:52:53)
- git-committer:
- Michael Ankele <ankele@…> (04/17/12 11:39:19)
- File:
-
- 1 moved
-
src/Parameters/unittests/DiscreteValueTest.cpp (moved) (moved from src/Parameters/unittests/DiscreteValueUnitTest.cpp ) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/unittests/DiscreteValueTest.cpp
rc68409 rdbb533 7 7 8 8 /* 9 * DiscreteValue UnitTest.cpp9 * DiscreteValueTest.cpp 10 10 * 11 11 * Created on: Sep 28, 2011 … … 18 18 #endif 19 19 20 #include "DiscreteValue UnitTest.hpp"20 #include "DiscreteValueTest.hpp" 21 21 22 22 #include <cppunit/CompilerOutputter.h> … … 24 24 #include <cppunit/ui/text/TestRunner.h> 25 25 26 #include "Parser/Parameters/DiscreteValue.hpp" 27 28 #include "CodePatterns/toString.hpp" 26 #include "Parameters/DiscreteValue.hpp" 29 27 30 28 #ifdef HAVE_TESTRUNNER … … 104 102 // checking valid values 105 103 for (int i=1; i<=3;++i) 106 CPPUNIT_ASSERT_EQUAL(true, test.isValid( toString(i)));107 108 // checking invalid values 109 for (int i=-10; i<=0;++i) 110 CPPUNIT_ASSERT_EQUAL(false, test.isValid( toString(i)));104 CPPUNIT_ASSERT_EQUAL(true, test.isValid(i)); 105 106 // checking invalid values 107 for (int i=-10; i<=0;++i) 108 CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); 111 109 for (int i=4; i<=0;++i) 112 CPPUNIT_ASSERT_EQUAL(false, test.isValid( toString(i)));110 CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); 113 111 } 114 112 … … 167 165 #ifndef NDEBUG 168 166 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 169 CPPUNIT_ASSERT_THROW(test.set( toString(4)), Assert::AssertionFailure);170 #endif 171 #ifndef NDEBUG 172 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 173 CPPUNIT_ASSERT_THROW(test.set( toString(0)), Assert::AssertionFailure);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); 174 172 #endif 175 173 176 174 // checking all valid ones 177 175 for (int i=1; i<=3;++i) { 178 test.set( toString(i));179 CPPUNIT_ASSERT_EQUAL( toString(i), test.get());176 test.set(i); 177 CPPUNIT_ASSERT_EQUAL(i, test.get()); 180 178 } 181 179
Note:
See TracChangeset
for help on using the changeset viewer.
