diff --git a/src/graph/Edge_TEST.cc b/src/graph/Edge_TEST.cc index 85486b431..cd28c1251 100644 --- a/src/graph/Edge_TEST.cc +++ b/src/graph/Edge_TEST.cc @@ -35,7 +35,7 @@ class EdgeTestFixture : public testing::Test // The list of edges we want to test. using EdgeTypes = ::testing::Types, UndirectedEdge>; -TYPED_TEST_CASE(EdgeTestFixture, EdgeTypes); +TYPED_TEST_SUITE(EdgeTestFixture, EdgeTypes, ); ///////////////////////////////////////////////// TYPED_TEST(EdgeTestFixture, Accessors) diff --git a/src/graph/GraphAlgorithms_TEST.cc b/src/graph/GraphAlgorithms_TEST.cc index db46dfb54..8d4f0619d 100644 --- a/src/graph/GraphAlgorithms_TEST.cc +++ b/src/graph/GraphAlgorithms_TEST.cc @@ -33,7 +33,7 @@ class GraphTestFixture : public testing::Test // The list of graphs we want to test. using GraphTypes = ::testing::Types, UndirectedGraph>; -TYPED_TEST_CASE(GraphTestFixture, GraphTypes); +TYPED_TEST_SUITE(GraphTestFixture, GraphTypes,); ///////////////////////////////////////////////// TYPED_TEST(GraphTestFixture, BreadthFirstSort) diff --git a/src/graph/Graph_TEST.cc b/src/graph/Graph_TEST.cc index 01fb7fbac..e68721e0b 100644 --- a/src/graph/Graph_TEST.cc +++ b/src/graph/Graph_TEST.cc @@ -55,7 +55,7 @@ class MockEdgesFullUndirectedGraph : public UndirectedGraph // The list of graphs we want to test. using GraphTypes = ::testing::Types, UndirectedGraph>; -TYPED_TEST_CASE(GraphTestFixture, GraphTypes); +TYPED_TEST_SUITE(GraphTestFixture, GraphTypes, ); ///////////////////////////////////////////////// TYPED_TEST(GraphTestFixture, UniformInitialization)