Changeset 8aba3c for src/unittests
- Timestamp:
- Feb 24, 2011, 7:39:42 PM (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, 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:
- 03c77c
- Parents:
- af897f
- git-author:
- Frederik Heber <heber@…> (02/24/11 14:33:18)
- git-committer:
- Frederik Heber <heber@…> (02/24/11 19:39:42)
- Location:
- src/unittests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/ListOfBondsUnitTest.cpp
raf897f r8aba3c 34 34 #include "periodentafel.hpp" 35 35 #include "World.hpp" 36 #include "WorldTime.hpp" 36 37 37 38 #include "ListOfBondsUnitTest.hpp" … … 314 315 CPPUNIT_ASSERT( Binder != NULL ); 315 316 317 // access test via CurrentTime 316 318 { 317 319 const BondList& ListOfBonds = atom1->getListOfBonds(); … … 328 330 World::getInstance().destroyAtom(atom2); 329 331 330 // check bond if removed from other atom 332 // check bond if removed from other atom for all time steps 331 333 { 332 334 const BondList& ListOfBonds = atom1->getListOfBonds(); … … 337 339 CPPUNIT_ASSERT_EQUAL( false, TestMolecule->hasBondStructure() ); 338 340 }; 341 342 /** Unit test on ListOfBonds at multiple time steps. 343 * 344 */ 345 void ListOfBondsTest::MultipleTimeStepTest() 346 { 347 atom *atom1 = NULL; 348 atom *atom2 = NULL; 349 bond *Binder = NULL; 350 { 351 molecule::iterator iter = TestMolecule->begin(); 352 atom1 = *iter; 353 iter++; 354 atom2 = *iter; 355 } 356 CPPUNIT_ASSERT( atom1 != NULL ); 357 CPPUNIT_ASSERT( atom2 != NULL ); 358 359 // add bond 360 WorldTime::setTime(0); 361 Binder = TestMolecule->AddBond(atom1, atom2, 1); 362 CPPUNIT_ASSERT( Binder != NULL ); 363 WorldTime::setTime(1); 364 Binder = TestMolecule->AddBond(atom1, atom2, 1); 365 CPPUNIT_ASSERT( Binder != NULL ); 366 367 // access test via CurrentTime 368 { // time step 0 369 WorldTime::setTime(0); 370 { 371 const BondList& ListOfBonds = atom1->getListOfBonds(); 372 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 373 } 374 { 375 const BondList& ListOfBonds = atom2->getListOfBonds(); 376 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 377 } 378 CPPUNIT_ASSERT_EQUAL( true, TestMolecule->hasBondStructure() ); 379 } 380 { // time step 1 381 WorldTime::setTime(1); 382 { 383 const BondList& ListOfBonds = atom1->getListOfBonds(); 384 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 385 } 386 { 387 const BondList& ListOfBonds = atom2->getListOfBonds(); 388 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 389 } 390 CPPUNIT_ASSERT_EQUAL( true, TestMolecule->hasBondStructure() ); 391 WorldTime::setTime(0); 392 } 393 394 // access time step directly. 395 { // time step 0 396 { 397 const BondList& ListOfBonds = atom1->getListOfBondsAtStep(0); 398 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 399 } 400 { 401 const BondList& ListOfBonds = atom2->getListOfBondsAtStep(0); 402 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 403 } 404 } 405 { // time step 1 406 { 407 const BondList& ListOfBonds = atom1->getListOfBondsAtStep(1); 408 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 409 } 410 { 411 const BondList& ListOfBonds = atom1->getListOfBondsAtStep(1); 412 CPPUNIT_ASSERT_EQUAL( (size_t) 1, ListOfBonds.size() ); 413 } 414 } 415 416 // remove atom2 417 World::getInstance().destroyAtom(atom2); 418 419 // check bond if removed from other atom for all time steps 420 { 421 WorldTime::setTime(0); 422 const BondList& ListOfBonds = atom1->getListOfBonds(); 423 CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() ); 424 CPPUNIT_ASSERT_EQUAL( false, TestMolecule->hasBondStructure() ); 425 } 426 { 427 WorldTime::setTime(1); 428 const BondList& ListOfBonds = atom1->getListOfBonds(); 429 CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() ); 430 CPPUNIT_ASSERT_EQUAL( false, TestMolecule->hasBondStructure() ); 431 WorldTime::setTime(0); 432 } 433 434 } -
src/unittests/ListOfBondsUnitTest.hpp
raf897f r8aba3c 33 33 CPPUNIT_TEST ( DeleteBondTest ); 34 34 CPPUNIT_TEST ( DeleteAtomTest ); 35 CPPUNIT_TEST ( MultipleTimeStepTest ); 35 36 CPPUNIT_TEST_SUITE_END(); 36 37 … … 45 46 void DeleteBondTest(); 46 47 void DeleteAtomTest(); 48 void MultipleTimeStepTest(); 47 49 48 50 private:
Note:
See TracChangeset
for help on using the changeset viewer.