Changeset 4415da for src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
- Timestamp:
- Apr 1, 2010, 12:16:29 PM (16 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:
- b8d4a3
- Parents:
- 9131f3 (diff), f9352d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
r9131f3 r4415da 27 27 #include "World.hpp" 28 28 29 #include "Helpers/Assert.hpp" 30 29 31 #ifdef HAVE_TESTRUNNER 30 32 #include "UnitTestMain.hpp" … … 38 40 void AnalysisCorrelationToSurfaceUnitTest::setUp() 39 41 { 42 ASSERT_DO(Assert::Throw); 43 40 44 atom *Walker = NULL; 41 45 … … 61 65 62 66 // construct periodentafel 63 tafel = World::get ()->getPeriode();67 tafel = World::getInstance().getPeriode(); 64 68 tafel->AddElement(hydrogen); 65 69 tafel->AddElement(carbon); 66 70 67 71 // construct molecule (tetraeder of hydrogens) base 68 TestMolecule = World::get ()->createMolecule();69 Walker = World::get ()->createAtom();72 TestMolecule = World::getInstance().createMolecule(); 73 Walker = World::getInstance().createAtom(); 70 74 Walker->type = hydrogen; 71 75 Walker->node->Init(1., 0., 1. ); 72 76 TestMolecule->AddAtom(Walker); 73 Walker = World::get ()->createAtom();77 Walker = World::getInstance().createAtom(); 74 78 Walker->type = hydrogen; 75 79 Walker->node->Init(0., 1., 1. ); 76 80 TestMolecule->AddAtom(Walker); 77 Walker = World::get ()->createAtom();81 Walker = World::getInstance().createAtom(); 78 82 Walker->type = hydrogen; 79 83 Walker->node->Init(1., 1., 0. ); 80 84 TestMolecule->AddAtom(Walker); 81 Walker = World::get ()->createAtom();85 Walker = World::getInstance().createAtom(); 82 86 Walker->type = hydrogen; 83 87 Walker->node->Init(0., 0., 0. ); … … 87 91 CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 ); 88 92 89 TestList = World::get ()->getMolecules();93 TestList = World::getInstance().getMolecules(); 90 94 TestMolecule->ActiveFlag = true; 91 95 TestList->insert(TestMolecule); … … 100 104 101 105 // add outer atoms 102 Walker = World::get ()->createAtom();106 Walker = World::getInstance().createAtom(); 103 107 Walker->type = carbon; 104 108 Walker->node->Init(4., 0., 4. ); 105 109 TestMolecule->AddAtom(Walker); 106 Walker = World::get ()->createAtom();110 Walker = World::getInstance().createAtom(); 107 111 Walker->type = carbon; 108 112 Walker->node->Init(0., 4., 4. ); 109 113 TestMolecule->AddAtom(Walker); 110 Walker = World::get ()->createAtom();114 Walker = World::getInstance().createAtom(); 111 115 Walker->type = carbon; 112 116 Walker->node->Init(4., 4., 0. ); 113 117 TestMolecule->AddAtom(Walker); 114 118 // add inner atoms 115 Walker = World::get ()->createAtom();119 Walker = World::getInstance().createAtom(); 116 120 Walker->type = carbon; 117 121 Walker->node->Init(0.5, 0.5, 0.5 ); … … 135 139 // note that all the atoms are cleaned by TestMolecule 136 140 delete(LC); 137 World:: destroy();141 World::purgeInstance(); 138 142 MemoryUsageObserver::purgeInstance(); 139 143 logger::purgeInstance();
Note:
See TracChangeset
for help on using the changeset viewer.
