Changeset bf4b9f for LinearAlgebra/src/unittests
- Timestamp:
- Apr 8, 2011, 3:48:50 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:
- ca2cfa
- Parents:
- 3e2225f
- git-author:
- Frederik Heber <heber@…> (04/02/11 00:53:43)
- git-committer:
- Frederik Heber <heber@…> (04/08/11 15:48:50)
- Location:
- LinearAlgebra/src/unittests
- Files:
-
- 2 added
- 17 moved
Legend:
- Unmodified
- Added
- Removed
-
LinearAlgebra/src/unittests/LineUnitTest.cpp
r3e2225f rbf4b9f 19 19 20 20 21 #include " LinearAlgebra/Exceptions.hpp"22 #include " LinearAlgebra/Vector.hpp"21 #include "Exceptions.hpp" 22 #include "Vector.hpp" 23 23 24 24 #include <cppunit/CompilerOutputter.h> -
LinearAlgebra/src/unittests/LineUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include "Line arAlgebra/Line.hpp"19 #include "Line.hpp" 20 20 21 21 class LineUnittest : public CppUnit::TestFixture -
LinearAlgebra/src/unittests/LinearSystemOfEquationsUnitTest.cpp
r3e2225f rbf4b9f 26 26 #include <cmath> 27 27 28 #include " LinearAlgebra/defs.hpp"29 #include " LinearAlgebra/Vector.hpp"28 #include "defs.hpp" 29 #include "Vector.hpp" 30 30 31 31 #include "LinearSystemOfEquationsUnitTest.hpp" -
LinearAlgebra/src/unittests/LinearSystemOfEquationsUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include "Linear Algebra/LinearSystemOfEquations.hpp"19 #include "LinearSystemOfEquations.hpp" 20 20 21 21 /********************************************** Test classes **************************************/ -
LinearAlgebra/src/unittests/Makefile.am
r3e2225f rbf4b9f 2 2 # Also indentation by a single tab 3 3 4 INCLUDES = -I$(top_srcdir)/src 4 INCLUDES = -I$(top_srcdir)/src/LinearAlgebra 5 5 6 6 AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl … … 19 19 20 20 check_PROGRAMS = $(TESTS) 21 noinst_PROGRAMS = $(TESTS) 21 noinst_PROGRAMS = $(TESTS) TestRunner 22 22 23 23 BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) 24 24 GSLLIBS = \ 25 ../ ../LinearAlgebra/libMolecuilderLinearAlgebra.la \25 ../LinearAlgebra/libLinearAlgebra.la \ 26 26 ${CodePatterns_LIBS} \ 27 27 $(BOOST_LIB) 28 28 29 LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 29 TESTSOURCES = \ 30 LinearSystemOfEquationsUnitTest.cpp \ 31 LineUnitTest.cpp \ 32 MatrixContentSymmetricUnitTest.cpp \ 33 MatrixContentUnitTest.cpp \ 34 MatrixUnitTest.cpp \ 35 PlaneUnitTest.cpp \ 36 VectorContentUnitTest.cpp \ 37 VectorUnitTest.cpp 38 39 TESTHEADERS = \ 40 LinearSystemOfEquationsUnitTest.hpp \ 41 LineUnitTest.hpp \ 42 MatrixContentSymmetricUnitTest.hpp \ 43 MatrixContentUnitTest.hpp \ 44 MatrixUnitTest.hpp \ 45 PlaneUnitTest.hpp \ 46 VectorContentUnitTest.hpp \ 47 VectorUnitTest.hpp 48 49 LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp \ 30 50 LinearSystemOfEquationsUnitTest.cpp \ 31 51 LinearSystemOfEquationsUnitTest.hpp 32 52 LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS} 33 53 34 LineUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \54 LineUnitTest_SOURCES = UnitTestMain.cpp \ 35 55 LineUnitTest.cpp \ 36 56 LineUnitTest.hpp 37 57 LineUnitTest_LDADD = ${GSLLIBS} 38 58 39 MatrixContentSymmetricUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \59 MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp \ 40 60 MatrixContentSymmetricUnitTest.cpp \ 41 61 MatrixContentSymmetricUnitTest.hpp 42 62 MatrixContentSymmetricUnitTest_LDADD = ${GSLLIBS} 43 63 44 MatrixContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \64 MatrixContentUnitTest_SOURCES = UnitTestMain.cpp \ 45 65 MatrixContentUnitTest.cpp \ 46 66 MatrixContentUnitTest.hpp 47 67 MatrixContentUnitTest_LDADD = ${GSLLIBS} 48 68 49 MatrixUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \69 MatrixUnitTest_SOURCES = UnitTestMain.cpp \ 50 70 MatrixUnitTest.cpp \ 51 71 MatrixUnitTest.hpp 52 72 MatrixUnitTest_LDADD = ${GSLLIBS} 53 73 54 PlaneUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \74 PlaneUnitTest_SOURCES = UnitTestMain.cpp \ 55 75 PlaneUnitTest.cpp \ 56 76 PlaneUnitTest.hpp 57 77 PlaneUnitTest_LDADD = ${GSLLIBS} 58 78 59 VectorContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \79 VectorContentUnitTest_SOURCES = UnitTestMain.cpp \ 60 80 VectorContentUnitTest.cpp \ 61 81 VectorContentUnitTest.hpp 62 82 VectorContentUnitTest_LDADD = ${GSLLIBS} 63 83 64 VectorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \84 VectorUnitTest_SOURCES = UnitTestMain.cpp \ 65 85 VectorUnitTest.cpp \ 66 86 VectorUnitTest.hpp … … 68 88 69 89 90 TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS) 91 TestRunner_LDADD = ${GSLLIBS} 92 70 93 #AUTOMAKE_OPTIONS = parallel-tests -
LinearAlgebra/src/unittests/MatrixContentSymmetricUnitTest.cpp
r3e2225f rbf4b9f 26 26 #include "MatrixContentSymmetricUnitTest.hpp" 27 27 28 #include " LinearAlgebra/MatrixContent.hpp"28 #include "MatrixContent.hpp" 29 29 30 30 #ifdef HAVE_TESTRUNNER -
LinearAlgebra/src/unittests/MatrixContentUnitTest.cpp
r3e2225f rbf4b9f 26 26 #include "MatrixContentUnitTest.hpp" 27 27 28 #include " LinearAlgebra/MatrixContent.hpp"28 #include "MatrixContent.hpp" 29 29 30 30 #ifdef HAVE_TESTRUNNER -
LinearAlgebra/src/unittests/MatrixUnitTest.cpp
r3e2225f rbf4b9f 27 27 #include "MatrixUnitTest.hpp" 28 28 29 #include " LinearAlgebra/defs.hpp"30 #include " LinearAlgebra/Exceptions.hpp"31 #include " LinearAlgebra/RealSpaceMatrix.hpp"32 #include " LinearAlgebra/Vector.hpp"29 #include "defs.hpp" 30 #include "Exceptions.hpp" 31 #include "RealSpaceMatrix.hpp" 32 #include "Vector.hpp" 33 33 34 34 #ifdef HAVE_TESTRUNNER -
LinearAlgebra/src/unittests/PlaneUnitTest.cpp
r3e2225f rbf4b9f 25 25 #include <limits> 26 26 27 #include " LinearAlgebra/defs.hpp"28 #include " LinearAlgebra/Exceptions.hpp"29 #include "Line arAlgebra/Line.hpp"30 #include " LinearAlgebra/Vector.hpp"27 #include "defs.hpp" 28 #include "Exceptions.hpp" 29 #include "Line.hpp" 30 #include "Vector.hpp" 31 31 32 32 #include "PlaneUnitTest.hpp" -
LinearAlgebra/src/unittests/PlaneUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include " LinearAlgebra/Plane.hpp"19 #include "Plane.hpp" 20 20 21 21 class PlaneUnittest : public CppUnit::TestFixture -
LinearAlgebra/src/unittests/VectorContentUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include " LinearAlgebra/VectorContent.hpp"19 #include "VectorContent.hpp" 20 20 21 21 /********************************************** Test classes **************************************/ -
LinearAlgebra/src/unittests/VectorUnitTest.cpp
r3e2225f rbf4b9f 27 27 28 28 #include "CodePatterns/Log.hpp" 29 #include " LinearAlgebra/defs.hpp"30 #include " LinearAlgebra/Plane.hpp"31 #include " LinearAlgebra/RealSpaceMatrix.hpp"32 #include " LinearAlgebra/Vector.hpp"33 #include " LinearAlgebra/vector_ops.hpp"29 #include "defs.hpp" 30 #include "Plane.hpp" 31 #include "RealSpaceMatrix.hpp" 32 #include "Vector.hpp" 33 #include "vector_ops.hpp" 34 34 35 35 #include "VectorUnitTest.hpp" -
LinearAlgebra/src/unittests/VectorUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include " LinearAlgebra/Vector.hpp"19 #include "Vector.hpp" 20 20 21 21 /********************************************** Test classes **************************************/
Note:
See TracChangeset
for help on using the changeset viewer.