Changeset c8302f3 for src/unittests
- Timestamp:
- Feb 13, 2013, 2:29:35 PM (12 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:
- 7d82a5
- Parents:
- 88c8ec
- git-author:
- Frederik Heber <heber@…> (11/02/12 13:36:49)
- git-committer:
- Frederik Heber <heber@…> (02/13/13 14:29:35)
- Location:
- src/unittests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/ListOfBondsUnitTest.cpp
r88c8ec rc8302f3 155 155 }; 156 156 157 /** Unit Test of molecule::RemoveBond()158 * 159 */ 160 void ListOfBondsTest:: RemovingBondTest()157 /** Unit Test of delete(bond::ptr ) 158 * 159 */ 160 void ListOfBondsTest::DeleteBondTest() 161 161 { 162 162 bond::ptr Binder = NULL; … … 173 173 174 174 // remove bond 175 TestMolecule->RemoveBond(Binder); 175 delete Binder; 176 //atom1->removeBond(Binder); 177 //atom2->removeBond(Binder); 176 178 177 179 // check if removed from atoms … … 182 184 { 183 185 const BondList& ListOfBonds = atom2->getListOfBonds(); 184 CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() );185 }186 187 // check if removed from molecule188 CPPUNIT_ASSERT_EQUAL( false, TestMolecule->hasBondStructure() );189 };190 191 /** Unit Test of molecule::RemoveBonds()192 *193 */194 void ListOfBondsTest::RemovingBondsTest()195 {196 bond::ptr Binder = NULL;197 molecule::iterator iter = TestMolecule->begin();198 atom *atom1 = *iter;199 iter++;200 atom *atom2 = *iter;201 iter++;202 atom *atom3 = *iter;203 CPPUNIT_ASSERT( atom1 != NULL );204 CPPUNIT_ASSERT( atom2 != NULL );205 CPPUNIT_ASSERT( atom3 != NULL );206 207 // add bond208 Binder = TestMolecule->AddBond(atom1, atom2, 1);209 CPPUNIT_ASSERT( Binder != NULL );210 Binder = TestMolecule->AddBond(atom1, atom3, 1);211 CPPUNIT_ASSERT( Binder != NULL );212 Binder = TestMolecule->AddBond(atom2, atom3, 1);213 CPPUNIT_ASSERT( Binder != NULL );214 215 // check that all are present216 {217 const BondList& ListOfBonds = atom1->getListOfBonds();218 CPPUNIT_ASSERT_EQUAL( (size_t) 2, ListOfBonds.size() );219 }220 {221 const BondList& ListOfBonds = atom2->getListOfBonds();222 CPPUNIT_ASSERT_EQUAL( (size_t) 2, ListOfBonds.size() );223 }224 {225 const BondList& ListOfBonds = atom3->getListOfBonds();226 CPPUNIT_ASSERT_EQUAL( (size_t) 2, ListOfBonds.size() );227 }228 229 // remove bond230 TestMolecule->RemoveBonds(atom1);231 232 // check if removed from atoms233 {234 const BondList& ListOfBonds = atom1->getListOfBonds();235 CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() );236 }237 {238 const BondList& ListOfBonds = atom2->getListOfBonds();239 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() );240 }241 {242 const BondList& ListOfBonds = atom3->getListOfBonds();243 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() );244 }245 246 // check if removed from molecule247 CPPUNIT_ASSERT_EQUAL( true, TestMolecule->hasBondStructure() );248 CPPUNIT_ASSERT_EQUAL( (int)1, TestMolecule->getBondCount() );249 };250 251 /** Unit Test of delete(bond::ptr )252 *253 */254 void ListOfBondsTest::DeleteBondTest()255 {256 bond::ptr Binder = NULL;257 molecule::iterator iter = TestMolecule->begin();258 atom *atom1 = *iter;259 iter++;260 atom *atom2 = *iter;261 CPPUNIT_ASSERT( atom1 != NULL );262 CPPUNIT_ASSERT( atom2 != NULL );263 264 // add bond265 Binder = TestMolecule->AddBond(atom1, atom2, 1);266 CPPUNIT_ASSERT( Binder != NULL );267 268 // remove bond269 delete(Binder);270 271 // check if removed from atoms272 {273 const BondList& ListOfBonds = atom1->getListOfBonds();274 CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() );275 }276 {277 const BondList& ListOfBonds = atom2->getListOfBonds();278 CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() );279 }280 281 // check if removed from molecule282 CPPUNIT_ASSERT_EQUAL( false, TestMolecule->hasBondStructure() );283 };284 285 /** Unit Test of molecule::RemoveAtom()286 *287 */288 void ListOfBondsTest::RemoveAtomTest()289 {290 bond::ptr Binder = NULL;291 molecule::iterator iter = TestMolecule->begin();292 atom *atom1 = *iter;293 iter++;294 atom *atom2 = *iter;295 CPPUNIT_ASSERT( atom1 != NULL );296 CPPUNIT_ASSERT( atom2 != NULL );297 298 // add bond299 Binder = TestMolecule->AddBond(atom1, atom2, 1);300 CPPUNIT_ASSERT( Binder != NULL );301 302 // remove atom2303 TestMolecule->RemoveAtom(atom2);304 305 // check bond if removed from other atom306 {307 const BondList& ListOfBonds = atom1->getListOfBonds();308 186 CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() ); 309 187 } -
src/unittests/ListOfBondsUnitTest.hpp
r88c8ec rc8302f3 28 28 CPPUNIT_TEST ( SetupTest ); 29 29 CPPUNIT_TEST ( AddingBondTest ); 30 CPPUNIT_TEST ( RemovingBondTest );31 CPPUNIT_TEST ( RemovingBondsTest );32 CPPUNIT_TEST ( RemoveAtomTest );33 30 CPPUNIT_TEST ( DeleteBondTest ); 34 31 CPPUNIT_TEST ( DeleteAtomTest ); … … 41 38 void SetupTest(); 42 39 void AddingBondTest(); 43 void RemovingBondTest();44 void RemovingBondsTest();45 void RemoveAtomTest();46 40 void DeleteBondTest(); 47 41 void DeleteAtomTest();
Note:
See TracChangeset
for help on using the changeset viewer.