- Timestamp:
- May 31, 2012, 1:25:03 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:
- 9b5eb0
- Parents:
- 30ebdd
- git-author:
- Michael Ankele <ankele@…> (04/16/12 12:30:32)
- git-committer:
- Michael Ankele <ankele@…> (05/31/12 13:25:03)
- Location:
- src/Parameters
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/ContinuousParameter_impl.hpp
r30ebdd r047cad 62 62 ContinuousValue<T>(_ValidRange) 63 63 { 64 set Value(_value);64 set(_value); 65 65 }; 66 66 -
src/Parameters/ContinuousValue.hpp
r30ebdd r047cad 53 53 const range<T> & getValidRange() const; 54 54 55 // internal functions alike toValueInterface56 bool isValid Value(const T &_value) const;57 void setValue(const T &_value);58 const T &getValue() const;55 // string functions for ValueInterface 56 bool isValidAsString(const std::string _value) const; 57 const std::string getAsString() const; 58 void setAsString(const std::string _value); 59 59 60 60 private: -
src/Parameters/ContinuousValue_impl.hpp
r30ebdd r047cad 58 58 bool ContinuousValue<T>::isValid(const T & _value) const 59 59 { 60 return isValidValue(_value); 60 bool isBefore = true; 61 bool isBeyond = true; 62 // check left boundary 63 isBefore = !((!ValidRangeSet.first) || (!ValidRange.isBefore(_value))); 64 // if (isBefore) 65 // LOG(0, "INFO: " << _value << " is before " << ValidRange.first << "."); 66 // check right boundary 67 isBeyond = !((!ValidRangeSet.last) || (!ValidRange.isBeyond(_value)) || (_value == ValidRange.last)); 68 // if (isBeyond) 69 // LOG(0, "INFO: " << _value << " is beyond " << ValidRange.last << "."); 70 return (!isBefore) && (!isBeyond); 61 71 } 62 72 … … 96 106 void ContinuousValue<T>::set(const T & _value) 97 107 { 98 setValue(_value); 108 ASSERT(isValid(_value), 109 "ContinuousValue<T>::setValue() - trying to set invalid value "+toString(_value)+"."); 110 if (!ValueSet) 111 ValueSet = true; 112 value = _value; 99 113 // LOG(0, "STATUS: Value is now set to " << value << "."); 100 114 } … … 143 157 */ 144 158 template <class T> 145 bool ContinuousValue<T>::isValid Value(const T &_value) const146 { 147 bool isBefore = true;159 bool ContinuousValue<T>::isValidAsString(const std::string _value) const 160 { 161 /*bool isBefore = true; 148 162 bool isBeyond = true; 149 163 // check left boundary … … 155 169 // if (isBeyond) 156 170 // LOG(0, "INFO: " << _value << " is beyond " << ValidRange.last << "."); 157 return (!isBefore) && (!isBeyond); 171 return (!isBefore) && (!isBeyond);*/ 172 return true; 158 173 } 159 174 … … 166 181 */ 167 182 template <class T> 168 void ContinuousValue<T>::set Value(const T &_value)169 { 170 ASSERT(isValidValue(_value),183 void ContinuousValue<T>::setAsString(const std::string _value) 184 { 185 /*ASSERT(isValidAsString(_value), 171 186 "ContinuousValue<T>::setValue() - trying to set invalid value "+toString(_value)+"."); 172 187 if (!ValueSet) 173 188 ValueSet = true; 174 value = _value; 189 value = _value;*/ 175 190 } 176 191 … … 182 197 */ 183 198 template <class T> 184 const T &ContinuousValue<T>::getValue() const199 const std::string ContinuousValue<T>::getAsString() const 185 200 { 186 201 ASSERT(ValueSet, 187 202 "ContinuousValue<T>::get() - value has never been set."); 188 return value;203 return toString(value); 189 204 } 190 205 -
src/Parameters/DiscreteValue.hpp
r30ebdd r047cad 52 52 const std::vector<T> &getValidValues() const; 53 53 54 // internal getter and setter55 bool isValid Value(const T &_value) const;56 void setValue(const T &_value);57 const T & getValue() const;54 // string functions for ValueInterface 55 bool isValidAsString(const std::string _value) const; 56 const std::string getAsString() const; 57 void setAsString(const std::string _value); 58 58 const size_t getIndexOfValue() const { return value; } 59 59 -
src/Parameters/DiscreteValue_impl.hpp
r30ebdd r047cad 53 53 bool DiscreteValue<T>::isValid(const T & _value) const 54 54 { 55 return isValidValue(_value); 55 typename ValidRange::const_iterator iter = std::find(ValidValues.begin(), ValidValues.end(), _value); 56 if (iter != ValidValues.end()) { 57 //std::cout << "Found " << _value << ":" << *iter << std::endl; 58 return true; 59 } else { 60 //std::cout << "Did not find " << _value << "." << std::endl; 61 return false; 62 } 56 63 } 57 64 … … 81 88 { 82 89 ASSERT(ValueSet, 83 "DiscreteValue< T>::get() - requesting unset value.");84 return getValue();90 "DiscreteValue<>::get() - value has never been set."); 91 return ValidValues[value]; 85 92 } 86 93 … … 92 99 void DiscreteValue<T>::set(const T & _value) 93 100 { 94 setValue(_value); 101 const size_t index = findIndexOfValue(_value); 102 ASSERT(index != (size_t)-1, 103 "DiscreteValue<>::set() - value "+toString(_value)+" is not valid."); 104 if (!ValueSet) 105 ValueSet = true; 106 value = index; 95 107 } 96 108 … … 128 140 void DiscreteValue<T>::appendValidValue(const T &_value) 129 141 { 130 ASSERT(!isValid Value(_value),142 ASSERT(!isValid(_value), 131 143 "DiscreteValue<>::appendValidValue() - value "+toString(_value)+" is already among the valid"); 132 144 ValidValues.push_back(_value); … … 150 162 */ 151 163 template <class T> 152 void DiscreteValue<T>::set Value(const T &_value)153 { 154 const size_t index = findIndexOfValue(_value);164 void DiscreteValue<T>::setAsString(const std::string _value) 165 { 166 /*const size_t index = findIndexOfValue(_value); 155 167 ASSERT(index != (size_t)-1, 156 168 "DiscreteValue<>::set() - value "+toString(_value)+" is not valid."); 157 169 if (!ValueSet) 158 170 ValueSet = true; 159 value = index; 171 value = index;*/ 160 172 } 161 173 … … 167 179 */ 168 180 template <class T> 169 const T & DiscreteValue<T>::getValue() const181 const std::string DiscreteValue<T>::getAsString() const 170 182 { 171 183 ASSERT(ValueSet, 172 184 "DiscreteValue<>::get() - value has never been set."); 173 return ValidValues[value];185 return toString(ValidValues[value]); 174 186 } 175 187 … … 179 191 */ 180 192 template <class T> 181 bool DiscreteValue<T>::isValid Value(const T &_value) const182 { 183 typename ValidRange::const_iterator iter = std::find(ValidValues.begin(), ValidValues.end(), _value);193 bool DiscreteValue<T>::isValidAsString(const std::string _value) const 194 { 195 /*typename ValidRange::const_iterator iter = std::find(ValidValues.begin(), ValidValues.end(), _value); 184 196 if (iter != ValidValues.end()) { 185 197 //std::cout << "Found " << _value << ":" << *iter << std::endl; … … 188 200 //std::cout << "Did not find " << _value << "." << std::endl; 189 201 return false; 190 } 202 }*/ 203 return true; 191 204 } 192 205 -
src/Parameters/Value.hpp
r30ebdd r047cad 22 22 23 23 #include "CodePatterns/Range.hpp" 24 #include "CodePatterns/toString.hpp" 24 25 25 26 class ValueTest; … … 45 46 void set(const T & _value); 46 47 48 // string functions for ValueInterface 49 bool isValidAsString(const std::string _value) const; 50 const std::string getAsString() const; 51 void setAsString(const std::string _value); 52 47 53 // comfortable setter 48 54 void operator=(const T &_value) … … 54 60 { return !((*this)==(_instance)); } 55 61 56 // setter/getter for valid values57 /*void appendValidValue(const T &_value);58 const std::vector<T> &getValidValues() const;59 60 // internal getter and setter61 bool isValidValue(const T &_value) const;62 void setValue(const T &_value);63 const T & getValue() const;64 const size_t getIndexOfValue() const { return value; }65 66 private:67 const size_t findIndexOfValue(const T &_value) const;*/68 69 62 const Validator<T> & getValidator() const; 70 63 Validator<T> & getValidator(); 71 64 72 65 private: 66 //!> Internal converter from string to internal type 67 static ConvertTo<T> Converter; 73 68 74 69 //!> whether a value has been set or not -
src/Parameters/ValueInterface.hpp
r30ebdd r047cad 14 14 #endif 15 15 16 #include <string> 17 16 18 /** Interface definition for general parameter values. 17 19 * … … 23 25 virtual ~ValueInterface() {}; 24 26 27 // direct functions 25 28 virtual bool isValid(const T & _value) const=0; 26 29 virtual const T & get() const=0; 27 30 virtual void set(const T & _value)=0; 31 32 // string functions 33 virtual bool isValidAsString(const std::string _value) const=0; 34 virtual const std::string getAsString() const=0; 35 virtual void setAsString(const std::string _value)=0; 28 36 }; 29 37 -
src/Parameters/Value_impl.hpp
r30ebdd r047cad 24 24 #include "Validators/DiscreteValidator.hpp" 25 25 #include "Validators/RangeValidator.hpp" 26 27 // static member 28 template <class T> ConvertTo<T> Value<T>::Converter; 26 29 27 30 /** Constructor of class Value. … … 131 134 } 132 135 136 137 138 /** Checks whether \a _value is a valid value. 139 * \param _value value to check for validity. 140 * \return true - \a _value is valid, false - is not 141 */ 142 template <class T> 143 bool Value<T>::isValidAsString(const std::string _value) const 144 { 145 const T castvalue = Converter(_value); 146 // LOG(0, "Converted value reads " << castvalue <<"."); 147 return isValid(castvalue); 148 } 149 150 /** Getter of value, returning string. 151 * 152 * @return string value 153 */ 154 template <class T> 155 const std::string Value<T>::getAsString() const 156 { 157 ASSERT(ValueSet, 158 "Value<T>::getAsString() - requesting unset value."); 159 return toString(value); 160 } 161 162 /** Setter of value for string 163 * 164 * @param _value string containing new value 165 */ 166 template <class T> 167 void Value<T>::setAsString(const std::string _value) 168 { 169 const T castvalue = Converter(_value); 170 // LOG(0, "Converted value reads " << castvalue <<"."); 171 set(castvalue); 172 // LOG(0, "STATUS: Value is now set to " << value << "."); 173 } 174 133 175 /** Returns the validator as a const reference. 134 176 * -
src/Parameters/unittests/ContinuousValueTest.cpp
r30ebdd r047cad 54 54 * 55 55 */ 56 void ContinuousValueTest::isValidInt ValueTest()56 void ContinuousValueTest::isValidIntAsStringTest() 57 57 { 58 58 // create instance … … 60 60 61 61 // checking valid values 62 for (int i=1; i<=4;++i)63 CPPUNIT_ASSERT_EQUAL(true, test.isValid Value(i));62 /*for (int i=1; i<=4;++i) 63 CPPUNIT_ASSERT_EQUAL(true, test.isValidAsString(toString(i))); 64 64 65 65 // checking invalid values 66 66 for (int i=-10; i<=0;++i) 67 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));67 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); 68 68 for (int i=5; i<=0;++i) 69 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));69 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i)));*/ 70 70 } 71 71 … … 100 100 // extending range and checking 101 101 for (int i=5; i<=6;++i) 102 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));102 CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); 103 103 test.setValidRange(range<int>(1,6)); 104 104 for (int i=5; i<=6;++i) 105 CPPUNIT_ASSERT_EQUAL(true, test.isValid Value(i));105 CPPUNIT_ASSERT_EQUAL(true, test.isValid(i)); 106 106 } 107 107 … … 111 111 112 112 // lowering range with set value 113 test.set Value(4);113 test.set(4); 114 114 CPPUNIT_ASSERT_EQUAL(true, test.ValueSet); 115 115 #ifndef NDEBUG … … 132 132 * 133 133 */ 134 void ContinuousValueTest::settergetterInt ValueTest()134 void ContinuousValueTest::settergetterIntAsStringTest() 135 135 { 136 136 // create instance … … 140 140 #ifndef NDEBUG 141 141 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 142 CPPUNIT_ASSERT_THROW(test.get Value(), Assert::AssertionFailure);142 CPPUNIT_ASSERT_THROW(test.getAsString(), Assert::AssertionFailure); 143 143 #endif 144 144 145 145 // setting invalid, throws 146 #ifndef NDEBUG147 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 148 CPPUNIT_ASSERT_THROW(test.set Value(5), Assert::AssertionFailure);149 #endif 150 #ifndef NDEBUG 151 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 152 CPPUNIT_ASSERT_THROW(test.set Value(0), Assert::AssertionFailure);146 /*#ifndef NDEBUG 147 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 148 CPPUNIT_ASSERT_THROW(test.setAsString(toString(5)), Assert::AssertionFailure); 149 #endif 150 #ifndef NDEBUG 151 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 152 CPPUNIT_ASSERT_THROW(test.setAsString(toString(0)), Assert::AssertionFailure); 153 153 #endif 154 154 … … 156 156 // checking all valid ones 157 157 for (int i=1; i<=4;++i) { 158 test.set Value(i);158 test.setAsString(toString(i)); 159 159 CPPUNIT_ASSERT_EQUAL(true, test.ValueSet); 160 CPPUNIT_ASSERT_EQUAL( i, test.getValue());161 } 160 CPPUNIT_ASSERT_EQUAL(toString(i), test.getAsString()); 161 }*/ 162 162 } 163 163 … … 202 202 ContinuousValue<int> test(*ValidIntRange); 203 203 ContinuousValue<int> instance(*ValidIntRange); 204 test.set Value(1);205 instance.set Value(1);204 test.set(1); 205 instance.set(1); 206 206 207 207 // same value, same range … … 212 212 // different value, same range 213 213 { 214 const int oldvalue = instance.get Value();215 instance.set Value(2);216 CPPUNIT_ASSERT(test != instance); 217 instance.set Value(oldvalue);214 const int oldvalue = instance.get(); 215 instance.set(2); 216 CPPUNIT_ASSERT(test != instance); 217 instance.set(oldvalue); 218 218 } 219 219 } … … 223 223 ContinuousValue<int> instance(OtherValidIntRange); 224 224 225 test.set Value(1);226 instance.set Value(1);225 test.set(1); 226 instance.set(1); 227 227 228 228 // same value, same range … … 233 233 // different value, same range 234 234 { 235 const int oldvalue = instance.get Value();236 instance.set Value(2);237 CPPUNIT_ASSERT(test != instance); 238 instance.set Value(oldvalue);235 const int oldvalue = instance.get(); 236 instance.set(2); 237 CPPUNIT_ASSERT(test != instance); 238 instance.set(oldvalue); 239 239 } 240 240 } … … 248 248 * 249 249 */ 250 void ContinuousValueTest::isValidVector ValueTest()251 { 252 // create instance 253 ContinuousValue<Vector> test(*ValidVectorRange);250 void ContinuousValueTest::isValidVectorAsStringTest() 251 { 252 // create instance 253 /*ContinuousValue<Vector> test(*ValidVectorRange); 254 254 255 255 // checking valid values … … 273 273 CPPUNIT_ASSERT_EQUAL(false, test.isValidValue(Vector(5,20,20))); 274 274 CPPUNIT_ASSERT_EQUAL(false, test.isValidValue(Vector(20,5,20))); 275 CPPUNIT_ASSERT_EQUAL(false, test.isValidValue(Vector(20,20,5))); 275 CPPUNIT_ASSERT_EQUAL(false, test.isValidValue(Vector(20,20,5)));*/ 276 276 } 277 277 … … 318 318 // extending range and checking 319 319 for (int i=15; i<=16;++i) 320 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(Vector(i,5,5)));320 CPPUNIT_ASSERT_EQUAL(false, test.isValid(Vector(i,5,5))); 321 321 test.setValidRange(range<Vector>(Vector(0,1,2),Vector(20,11,12))); 322 322 for (int i=15; i<=16;++i) 323 CPPUNIT_ASSERT_EQUAL(true, test.isValid Value(Vector(i,5,5)));323 CPPUNIT_ASSERT_EQUAL(true, test.isValid(Vector(i,5,5))); 324 324 } 325 325 … … 329 329 330 330 // lowering range with set value 331 test.set Value(Vector(4,4,4));331 test.set(Vector(4,4,4)); 332 332 CPPUNIT_ASSERT_EQUAL(true, test.ValueSet); 333 333 #ifndef NDEBUG … … 350 350 * 351 351 */ 352 void ContinuousValueTest::settergetterVector ValueTest()353 { 354 // create instance 355 ContinuousValue<Vector> test(*ValidVectorRange);352 void ContinuousValueTest::settergetterVectorAsStringTest() 353 { 354 // create instance 355 /*ContinuousValue<Vector> test(*ValidVectorRange); 356 356 357 357 // unset calling of get, throws … … 378 378 CPPUNIT_ASSERT_EQUAL(true, test.ValueSet); 379 379 CPPUNIT_ASSERT_EQUAL(v, test.getValue()); 380 } 380 }*/ 381 381 } 382 382 … … 424 424 ContinuousValue<Vector> test(*ValidVectorRange); 425 425 ContinuousValue<Vector> instance(*ValidVectorRange); 426 test.set Value(Vector(5,6,7));427 instance.set Value(Vector(5,6,7));426 test.set(Vector(5,6,7)); 427 instance.set(Vector(5,6,7)); 428 428 429 429 // same value, same range … … 434 434 // different value, same range 435 435 { 436 const Vector oldvalue = instance.get Value();437 instance.set Value(Vector(2,3,4));438 CPPUNIT_ASSERT(test != instance); 439 instance.set Value(oldvalue);436 const Vector oldvalue = instance.get(); 437 instance.set(Vector(2,3,4)); 438 CPPUNIT_ASSERT(test != instance); 439 instance.set(oldvalue); 440 440 } 441 441 } … … 445 445 ContinuousValue<Vector> instance(OtherValidVectorRange); 446 446 447 test.set Value(Vector(1,2,3));448 instance.set Value(Vector(1,2,3));447 test.set(Vector(1,2,3)); 448 instance.set(Vector(1,2,3)); 449 449 450 450 // same value, same range … … 455 455 // different value, same range 456 456 { 457 const Vector oldvalue = instance.get Value();458 instance.set Value(Vector(2,3,4));459 CPPUNIT_ASSERT(test != instance); 460 instance.set Value(oldvalue);461 } 462 } 463 } 457 const Vector oldvalue = instance.get(); 458 instance.set(Vector(2,3,4)); 459 CPPUNIT_ASSERT(test != instance); 460 instance.set(oldvalue); 461 } 462 } 463 } -
src/Parameters/unittests/ContinuousValueTest.hpp
r30ebdd r047cad 25 25 { 26 26 CPPUNIT_TEST_SUITE( ContinuousValueTest ) ; 27 CPPUNIT_TEST ( isValidInt ValueTest );27 CPPUNIT_TEST ( isValidIntAsStringTest ); 28 28 CPPUNIT_TEST ( isValidIntTest ); 29 29 CPPUNIT_TEST ( setgetValidIntRangeTest ); 30 CPPUNIT_TEST ( settergetterInt ValueTest );30 CPPUNIT_TEST ( settergetterIntAsStringTest ); 31 31 CPPUNIT_TEST ( settergetterIntTest ); 32 32 CPPUNIT_TEST ( comparatorIntTest ); 33 CPPUNIT_TEST ( isValidVector ValueTest );33 CPPUNIT_TEST ( isValidVectorAsStringTest ); 34 34 CPPUNIT_TEST ( isValidVectorTest ); 35 35 CPPUNIT_TEST ( setgetValidVectorRangeTest ); 36 CPPUNIT_TEST ( settergetterVector ValueTest );36 CPPUNIT_TEST ( settergetterVectorAsStringTest ); 37 37 CPPUNIT_TEST ( settergetterVectorTest ); 38 38 CPPUNIT_TEST ( comparatorVectorTest ); … … 43 43 void tearDown(); 44 44 45 void isValidInt ValueTest();45 void isValidIntAsStringTest(); 46 46 void isValidIntTest(); 47 47 void setgetValidIntRangeTest(); 48 void settergetterInt ValueTest();48 void settergetterIntAsStringTest(); 49 49 void settergetterIntTest(); 50 50 void comparatorIntTest(); 51 51 52 void isValidVector ValueTest();52 void isValidVectorAsStringTest(); 53 53 void isValidVectorTest(); 54 54 void setgetValidVectorRangeTest(); 55 void settergetterVector ValueTest();55 void settergetterVectorAsStringTest(); 56 56 void settergetterVectorTest(); 57 57 void comparatorVectorTest(); -
src/Parameters/unittests/DiscreteValueTest.cpp
r30ebdd r047cad 76 76 * 77 77 */ 78 void DiscreteValueTest::isValid ValueTest()78 void DiscreteValueTest::isValidAsStringTest() 79 79 { 80 80 // create instance … … 82 82 83 83 // checking valid values 84 for (int i=1; i<=3;++i)85 CPPUNIT_ASSERT_EQUAL(true, test.isValid Value(i));86 87 // checking invalid values 88 for (int i=-10; i<=0;++i) 89 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));84 /*for (int i=1; i<=3;++i) 85 CPPUNIT_ASSERT_EQUAL(true, test.isValidAsString(toString(i))); 86 87 // checking invalid values 88 for (int i=-10; i<=0;++i) 89 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); 90 90 for (int i=4; i<=0;++i) 91 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));91 CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i)));*/ 92 92 } 93 93 … … 121 121 // adding values 4,5,6 122 122 for (int i=4; i<=6;++i) { 123 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));123 CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); 124 124 test.appendValidValue(i); 125 CPPUNIT_ASSERT_EQUAL(true, test.isValid Value(i));125 CPPUNIT_ASSERT_EQUAL(true, test.isValid(i)); 126 126 } 127 127 … … 137 137 // checking valid values 138 138 for (int i=1; i<=6;++i) 139 CPPUNIT_ASSERT_EQUAL(true, test.isValid Value(i));140 141 // checking invalid values 142 for (int i=-10; i<=0;++i) 143 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));139 CPPUNIT_ASSERT_EQUAL(true, test.isValid(i)); 140 141 // checking invalid values 142 for (int i=-10; i<=0;++i) 143 CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); 144 144 145 145 // checking invalid values 146 146 for (int i=7; i<=10;++i) 147 CPPUNIT_ASSERT_EQUAL(false, test.isValid Value(i));147 CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); 148 148 } 149 149 … … 183 183 * 184 184 */ 185 void DiscreteValueTest::settergetter ValueTest()185 void DiscreteValueTest::settergetterAsStringTest() 186 186 { 187 187 // create instance … … 191 191 #ifndef NDEBUG 192 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.get Value(), Assert::AssertionFailure);193 CPPUNIT_ASSERT_THROW(test.getAsString(), Assert::AssertionFailure); 194 194 #endif 195 195 196 196 // setting invalid, throws 197 #ifndef NDEBUG198 std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; 199 CPPUNIT_ASSERT_THROW(test.set Value(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.set Value(0), Assert::AssertionFailure);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 204 #endif 205 205 206 206 // checking all valid ones 207 207 for (int i=1; i<=3;++i) { 208 test.set Value(i);209 CPPUNIT_ASSERT_EQUAL( i, test.getValue());210 } 208 test.setAsString(toString(i)); 209 CPPUNIT_ASSERT_EQUAL(toString(i), test.getAsString()); 210 }*/ 211 211 } 212 212 … … 220 220 DiscreteValue<int> test(ValidValues); 221 221 DiscreteValue<int> instance(ValidValues); 222 test.set Value(1);223 instance.set Value(1);222 test.set(1); 223 instance.set(1); 224 224 225 225 // same value, same range … … 230 230 // different value, same range 231 231 { 232 const int oldvalue = instance.get Value();233 instance.set Value(2);232 const int oldvalue = instance.get(); 233 instance.set(2); 234 234 CPPUNIT_ASSERT(test != instance); 235 instance.set Value(oldvalue);235 instance.set(oldvalue); 236 236 } 237 237 } … … 241 241 instance.appendValidValue(4); 242 242 243 test.set Value(1);244 instance.set Value(1);243 test.set(1); 244 instance.set(1); 245 245 246 246 // same value, same range … … 251 251 // different value, same range 252 252 { 253 const int oldvalue = instance.get Value();254 instance.set Value(2);253 const int oldvalue = instance.get(); 254 instance.set(2); 255 255 CPPUNIT_ASSERT(test != instance); 256 instance.set Value(oldvalue);257 } 258 } 259 } 256 instance.set(oldvalue); 257 } 258 } 259 } -
src/Parameters/unittests/DiscreteValueTest.hpp
r30ebdd r047cad 21 21 CPPUNIT_TEST_SUITE( DiscreteValueTest ) ; 22 22 CPPUNIT_TEST ( findIndexOfValueTest ); 23 CPPUNIT_TEST ( isValid ValueTest );23 CPPUNIT_TEST ( isValidAsStringTest ); 24 24 CPPUNIT_TEST ( isValidTest ); 25 25 CPPUNIT_TEST ( appendValidValueTest ); 26 26 CPPUNIT_TEST ( settergetterTest ); 27 CPPUNIT_TEST ( settergetter ValueTest );27 CPPUNIT_TEST ( settergetterAsStringTest ); 28 28 CPPUNIT_TEST ( comparatorTest ); 29 29 CPPUNIT_TEST_SUITE_END(); … … 34 34 35 35 void findIndexOfValueTest(); 36 void isValid ValueTest();36 void isValidAsStringTest(); 37 37 void isValidTest(); 38 38 void appendValidValueTest(); 39 39 void settergetterTest(); 40 void settergetter ValueTest();40 void settergetterAsStringTest(); 41 41 void comparatorTest(); 42 42
Note:
See TracChangeset
for help on using the changeset viewer.