- Timestamp:
- Jul 12, 2017, 7:10:31 PM (7 years ago)
- Branches:
- Action_Thermostats, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_StructOpt_integration_tests, AutomationFragmentation_failures, Candidate_v1.6.1, ChemicalSpaceEvaluator, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Exclude_Hydrogens_annealWithBondGraph, Fix_Verbose_Codepatterns, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, Gui_displays_atomic_force_velocity, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, PythonUI_with_named_parameters, Recreated_GuiChecks, StoppableMakroAction, TremoloParser_IncreasedPrecision
- Children:
- 1356af
- Parents:
- bccbe9
- git-author:
- Frederik Heber <frederik.heber@…> (05/19/17 09:23:45)
- git-committer:
- Frederik Heber <frederik.heber@…> (07/12/17 19:10:31)
- Location:
- src/Graph
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/BoostGraphCreator.hpp
rbccbe9 r6e5b8d 27 27 class molecule; 28 28 29 class BreadthFirstSearchGathererTest; 30 29 31 /** This is a helper class that contains functions to create a boost::graph 30 32 * from the present bond graph of molecules. … … 32 34 struct BoostGraphCreator 33 35 { 36 //!> grant unit test access to private parts that use BoostGraphCreator's internal graph 37 friend class BreadthFirstSearchGathererTest; 38 34 39 public: 35 40 //!> typedef for an undirected graph using boost::graph -
src/Graph/unittests/Makefile.am
rbccbe9 r6e5b8d 4 4 GRAPHTESTSSOURCES = \ 5 5 ../Graph/unittests/AdjacencyListUnitTest.cpp \ 6 ../Graph/unittests/BondGraphUnitTest.cpp 6 ../Graph/unittests/BondGraphUnitTest.cpp \ 7 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp 7 8 8 9 GRAPHTESTSHEADERS = \ 9 10 ../Graph/unittests/AdjacencyListUnitTest.hpp \ 10 ../Graph/unittests/BondGraphUnitTest.hpp 11 ../Graph/unittests/BondGraphUnitTest.hpp \ 12 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp 11 13 12 14 GRAPHTESTS = \ 13 15 AdjacencyListUnitTest \ 14 BondGraphUnitTest 15 16 BondGraphUnitTest \ 17 BreadthFirstSearchGathererUnitTest 16 18 17 19 TESTS += $(GRAPHTESTS) … … 21 23 GRAPHLIBS = \ 22 24 libUnitTest.la \ 25 ../libMolecuilderGraph.la \ 23 26 ../libMolecuilder.la \ 24 ../libMolecuilderUI.la \ 25 ../libMolecuilderGraph.la 27 ../libMolecuilderUI.la 26 28 if CONDJOBMARKET 27 29 GRAPHLIBS += \ … … 45 47 BondGraphUnitTest_LDADD = ${GRAPHLIBS} 46 48 49 BreadthFirstSearchGathererUnitTest_SOURCES = \ 50 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \ 51 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp 52 BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS} 47 53 48 54
Note:
See TracChangeset
for help on using the changeset viewer.