- Timestamp:
- Jul 12, 2017, 7:10:32 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:
- e3ec8a8
- Parents:
- 1356af
- git-author:
- Frederik Heber <frederik.heber@…> (05/19/17 13:00:12)
- git-committer:
- Frederik Heber <frederik.heber@…> (07/12/17 19:10:32)
- Location:
- src/Graph
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/BoostGraphCreator.hpp
r1356af r0dc8bf2 27 27 class molecule; 28 28 29 class BoostGraphCreatorTest; 29 30 class BreadthFirstSearchGathererTest; 30 31 … … 34 35 struct BoostGraphCreator 35 36 { 37 //!> grant unit test access to private parts 38 friend class BoostGraphCreatorTest; 36 39 //!> grant unit test access to private parts that use BoostGraphCreator's internal graph 37 40 friend class BreadthFirstSearchGathererTest; -
src/Graph/unittests/Makefile.am
r1356af r0dc8bf2 5 5 ../Graph/unittests/AdjacencyListUnitTest.cpp \ 6 6 ../Graph/unittests/BondGraphUnitTest.cpp \ 7 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \ 7 8 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp 8 9 … … 10 11 ../Graph/unittests/AdjacencyListUnitTest.hpp \ 11 12 ../Graph/unittests/BondGraphUnitTest.hpp \ 13 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \ 12 14 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp 13 15 … … 15 17 AdjacencyListUnitTest \ 16 18 BondGraphUnitTest \ 19 BoostGraphCreatorUnitTest \ 17 20 BreadthFirstSearchGathererUnitTest 18 21 … … 47 50 BondGraphUnitTest_LDADD = ${GRAPHLIBS} 48 51 52 BoostGraphCreatorUnitTest_SOURCES = \ 53 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \ 54 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp 55 BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS} 56 49 57 BreadthFirstSearchGathererUnitTest_SOURCES = \ 50 58 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.