Skip to content

Commit

Permalink
Test updates for new googletest version
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <michael@openrobotics.org>
  • Loading branch information
mjcarroll committed Jun 28, 2022
1 parent 621dfb2 commit 31ffca0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/graph/Edge_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class EdgeTestFixture : public testing::Test
// The list of edges we want to test.
using EdgeTypes = ::testing::Types<DirectedEdge<int>,
UndirectedEdge<int>>;
TYPED_TEST_CASE(EdgeTestFixture, EdgeTypes);
TYPED_TEST_SUITE(EdgeTestFixture, EdgeTypes, );

/////////////////////////////////////////////////
TYPED_TEST(EdgeTestFixture, Accessors)
Expand Down
2 changes: 1 addition & 1 deletion src/graph/GraphAlgorithms_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class GraphTestFixture : public testing::Test
// The list of graphs we want to test.
using GraphTypes = ::testing::Types<DirectedGraph<int, double>,
UndirectedGraph<int, double>>;
TYPED_TEST_CASE(GraphTestFixture, GraphTypes);
TYPED_TEST_SUITE(GraphTestFixture, GraphTypes, );

/////////////////////////////////////////////////
TYPED_TEST(GraphTestFixture, BreadthFirstSort)
Expand Down
2 changes: 1 addition & 1 deletion src/graph/Graph_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class MockEdgesFullUndirectedGraph : public UndirectedGraph<V, E>
// The list of graphs we want to test.
using GraphTypes = ::testing::Types<DirectedGraph<int, double>,
UndirectedGraph<int, double>>;
TYPED_TEST_CASE(GraphTestFixture, GraphTypes);
TYPED_TEST_SUITE(GraphTestFixture, GraphTypes, );

/////////////////////////////////////////////////
TYPED_TEST(GraphTestFixture, UniformInitialization)
Expand Down

0 comments on commit 31ffca0

Please sign in to comment.