Skip to content

Commit

Permalink
fixup! fixup! BoostTest: Add a test for BoostTestFinder
Browse files Browse the repository at this point in the history
  • Loading branch information
jnohlgard committed Oct 20, 2020
1 parent a2e88a6 commit 171bbbc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/BoostTest/BoostTestFinderTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ TEST(BoostTestFinder, FindTest) {

ASSERT_EQ(1U, tests.size());

ASSERT_EQ("SampleTestSuite/sampleTestCase", tests[0].getTestName());
ASSERT_EQ("--run_test=SampleTestSuite/sampleTestCase", tests[0].getArguments());
ASSERT_EQ("SampleTestSuite/sampleTestCase", tests.at(0).getTestName());
auto args = tests.at(0).getArguments();
ASSERT_EQ(1, args.size());
ASSERT_EQ("--run_test=SampleTestSuite/sampleTestCase", args.at(0));
}

0 comments on commit 171bbbc

Please sign in to comment.