Changeset c8302f3 for src/unittests


Ignore:
Timestamp:
Feb 13, 2013, 2:29:35 PM (12 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

Removed molecule::RemoveBond(s) and ::removeAtom().

  • this functionality has only been used in ListOfBondsUnitTest but nowhere else and it obstructed with change to boost::shared_ptr.
Location:
src/unittests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/unittests/ListOfBondsUnitTest.cpp

    r88c8ec rc8302f3  
    155155};
    156156
    157 /** Unit Test of molecule::RemoveBond()
    158  *
    159  */
    160 void ListOfBondsTest::RemovingBondTest()
     157/** Unit Test of delete(bond::ptr )
     158 *
     159 */
     160void ListOfBondsTest::DeleteBondTest()
    161161{
    162162  bond::ptr Binder = NULL;
     
    173173
    174174  // remove bond
    175   TestMolecule->RemoveBond(Binder);
     175  delete Binder;
     176  //atom1->removeBond(Binder);
     177  //atom2->removeBond(Binder);
    176178
    177179  // check if removed from atoms
     
    182184  {
    183185    const BondList& ListOfBonds = atom2->getListOfBonds();
    184     CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() );
    185   }
    186 
    187   // check if removed from molecule
    188   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 bond
    208   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 present
    216   {
    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 bond
    230   TestMolecule->RemoveBonds(atom1);
    231 
    232   // check if removed from atoms
    233   {
    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 molecule
    247   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 bond
    265   Binder = TestMolecule->AddBond(atom1, atom2, 1);
    266   CPPUNIT_ASSERT( Binder != NULL );
    267 
    268   // remove bond
    269   delete(Binder);
    270 
    271   // check if removed from atoms
    272   {
    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 molecule
    282   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 bond
    299   Binder = TestMolecule->AddBond(atom1, atom2, 1);
    300   CPPUNIT_ASSERT( Binder != NULL );
    301 
    302   // remove atom2
    303   TestMolecule->RemoveAtom(atom2);
    304 
    305   // check bond if removed from other atom
    306   {
    307     const BondList& ListOfBonds = atom1->getListOfBonds();
    308186    CPPUNIT_ASSERT_EQUAL( (size_t) 0, ListOfBonds.size() );
    309187  }
  • src/unittests/ListOfBondsUnitTest.hpp

    r88c8ec rc8302f3  
    2828    CPPUNIT_TEST ( SetupTest );
    2929    CPPUNIT_TEST ( AddingBondTest );
    30     CPPUNIT_TEST ( RemovingBondTest );
    31     CPPUNIT_TEST ( RemovingBondsTest );
    32     CPPUNIT_TEST ( RemoveAtomTest );
    3330    CPPUNIT_TEST ( DeleteBondTest );
    3431    CPPUNIT_TEST ( DeleteAtomTest );
     
    4138      void SetupTest();
    4239      void AddingBondTest();
    43       void RemovingBondTest();
    44       void RemovingBondsTest();
    45       void RemoveAtomTest();
    4640      void DeleteBondTest();
    4741      void DeleteAtomTest();
Note: See TracChangeset for help on using the changeset viewer.