- Timestamp:
- Dec 16, 2010, 11:32:21 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:
- deddf6
- Parents:
- 85949a
- git-author:
- Frederik Heber <heber@…> (12/16/10 22:12:19)
- git-committer:
- Frederik Heber <heber@…> (12/16/10 23:32:21)
- Location:
- src
- Files:
-
- 1 added
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/Singleton_impl.hpp
r85949a rc0bccb 9 9 #define SINGLETON_IMPL_HPP_ 10 10 11 #include "Helpers/Assert.hpp" 11 12 #include "Patterns/Singleton.hpp" 12 13 -
src/Patterns/unittests/SingletonUnitTest.cpp
r85949a rc0bccb 7 7 8 8 /* 9 * Singleton Test.cpp9 * SingletonUnitTest.cpp 10 10 * 11 11 * Created on: Mar 11, 2010 … … 18 18 #endif 19 19 20 #include "Singleton Test.hpp"20 #include "SingletonUnitTest.hpp" 21 21 22 22 #include <cppunit/CompilerOutputter.h> -
src/Patterns/unittests/SingletonUnitTest.hpp
r85949a rc0bccb 1 1 /* 2 * Singleton Test.hpp2 * SingletonUnitTest.hpp 3 3 * 4 4 * Created on: Mar 11, 2010 … … 6 6 */ 7 7 8 #ifndef SINGLETON TEST_HPP_9 #define SINGLETON TEST_HPP_8 #ifndef SINGLETONUNITTEST_HPP_ 9 #define SINGLETONUNITTEST_HPP_ 10 10 11 11 #include <cppunit/extensions/HelperMacros.h> … … 24 24 }; 25 25 26 #endif /* SINGLETON TEST_HPP_ */26 #endif /* SINGLETONUNITTEST_HPP_ */ -
src/unittests/Makefile.am
r85949a rc0bccb 1 1 # PLEASE adhere to the alphabetical ordering in this Makefile! 2 2 # Also indentation by a single tab 3 4 SUBDIRS = \ 5 ../Patterns/unittests 3 6 4 7 INCLUDES = -I$(top_srcdir)/src … … 41 44 Registry \ 42 45 ShapeUnittest \ 43 SingletonTest \44 46 SubspaceFactorizerUnitTest \ 45 47 TesselationUnitTest \ … … 102 104 RegistryUnitTest.cpp \ 103 105 ShapeUnittest.cpp \ 104 SingletonTest.cpp \106 ../Patterns/unittests/SingletonUnitTest.cpp \ 105 107 tesselationunittest.cpp \ 106 108 tesselation_boundarytriangleunittest.cpp \ … … 141 143 PlaneUnittest.hpp \ 142 144 RegistryUnitTest.hpp \ 143 SingletonTest.hpp \ 145 ShapeUnittest.hpp \ 146 ../Patterns/unittests/SingletonUnitTest.hpp \ 147 stackclassunittest.hpp \ 144 148 tesselationunittest.hpp \ 145 149 tesselation_boundarytriangleunittest.hpp \ … … 245 249 ShapeUnittest_LDADD = ${ALLLIBS} 246 250 247 SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp248 SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}249 250 251 SubspaceFactorizerUnitTest_SOURCES = UnitTestMain.cpp SubspaceFactorizerUnittest.cpp SubspaceFactorizerUnittest.hpp 251 252 SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
Note:
See TracChangeset
for help on using the changeset viewer.