- Timestamp:
- Dec 16, 2010, 11:47:45 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:
- f844ef
- Parents:
- 0b3cbdf
- git-author:
- Frederik Heber <heber@…> (12/16/10 21:07:59)
- git-committer:
- Frederik Heber <heber@…> (12/16/10 23:47:45)
- Location:
- src
- Files:
-
- 2 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
src/LinearAlgebra/unittests/Makefile.am
r0b3cbdf rdfafe7 14 14 MatrixContentUnitTest \ 15 15 MatrixUnitTest \ 16 PlaneUnitTest 16 PlaneUnitTest \ 17 VectorContentUnitTest \ 18 VectorUnitTest 17 19 18 20 … … 57 59 PlaneUnitTest_LDADD = ${GSLLIBS} 58 60 61 VectorContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 62 VectorContentUnitTest.cpp \ 63 VectorContentUnitTest.hpp 64 VectorContentUnitTest_LDADD = ${GSLLIBS} 65 66 VectorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 67 VectorUnitTest.cpp \ 68 VectorUnitTest.hpp 69 VectorUnitTest_LDADD = ${GSLLIBS} 70 59 71 60 72 #AUTOMAKE_OPTIONS = parallel-tests -
src/LinearAlgebra/unittests/VectorContentUnitTest.cpp
r0b3cbdf rdfafe7 24 24 #include <cppunit/ui/text/TestRunner.h> 25 25 26 #include "VectorContentUnit test.hpp"26 #include "VectorContentUnitTest.hpp" 27 27 28 28 #ifdef HAVE_TESTRUNNER -
src/LinearAlgebra/unittests/VectorUnitTest.cpp
r0b3cbdf rdfafe7 28 28 #include "LinearAlgebra/Vector.hpp" 29 29 #include "LinearAlgebra/vector_ops.hpp" 30 #include "vectorunittest.hpp"31 30 #include "LinearAlgebra/Plane.hpp" 32 31 #include "Exceptions/LinearDependenceException.hpp" 33 32 #include "LinearAlgebra/RealSpaceMatrix.hpp" 34 33 34 #include "VectorUnitTest.hpp" 35 35 36 #ifdef HAVE_TESTRUNNER 36 37 #include "UnitTestMain.hpp" … … 38 39 39 40 #include <iostream> 40 41 using namespace std;42 41 43 42 /********************************************** Test classes **************************************/ -
src/unittests/Makefile.am
r0b3cbdf rdfafe7 32 32 TesselationUnitTest \ 33 33 Tesselation_BoundaryTriangleUnitTest \ 34 Tesselation_InOutsideUnitTest \ 35 VectorContentUnitTest \ 36 VectorUnitTest 34 Tesselation_InOutsideUnitTest 37 35 38 36 … … 93 91 tesselation_boundarytriangleunittest.cpp \ 94 92 tesselation_insideoutsideunittest.cpp \ 95 VectorContentUnittest.cpp \96 vectorunittest.cpp93 ../LinearAlgebra/unittests/VectorContentUnitTest.cpp \ 94 ../LinearAlgebra/unittests/VectorUnitTest.cpp 97 95 98 96 TESTHEADERS = \ … … 134 132 tesselation_boundarytriangleunittest.hpp \ 135 133 tesselation_insideoutsideunittest.hpp \ 136 VectorContentUnittest.hpp \137 vectorunittest.hpp134 ../LinearAlgebra/unittests/VectorContentUnitTest.hpp \ 135 ../LinearAlgebra/unittests/VectorUnitTest.hpp 138 136 139 137 … … 186 184 TestRunner_LDADD = ${UILIBS} ${ALLLIBS} 187 185 188 VectorContentUnitTest_SOURCES = UnitTestMain.cpp VectorContentUnittest.cpp VectorContentUnittest.hpp189 VectorContentUnitTest_LDADD = ${ALLLIBS}190 191 VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp192 VectorUnitTest_LDADD = ${ALLLIBS}193 194 186 #AUTOMAKE_OPTIONS = parallel-tests
Note:
See TracChangeset
for help on using the changeset viewer.