mirror of
https://github.com/google/googletest.git
synced 2025-04-05 13:35:03 +00:00
make them const& so we can avoid changes in future
This commit is contained in:
parent
2c49f9cb0d
commit
cd175a7054
3 changed files with 5 additions and 5 deletions
|
@ -821,7 +821,7 @@ TEST_F(PREFIX_WITH_MACRO(NamingTestNonParametrized),
|
|||
TEST(MacroNameing, LookupNames) {
|
||||
std::set<std::string> know_suite_names, know_test_names;
|
||||
|
||||
auto ins = testing::UnitTest::GetInstance().get();
|
||||
const auto& ins = testing::UnitTest::GetInstance();
|
||||
int ts = 0;
|
||||
while (const testing::TestSuite* suite = ins->GetTestSuite(ts++)) {
|
||||
know_suite_names.insert(suite->name());
|
||||
|
@ -897,7 +897,7 @@ INSTANTIATE_TEST_SUITE_P(CustomParamNameLambda, CustomLambdaNamingTest,
|
|||
});
|
||||
|
||||
TEST(CustomNamingTest, CheckNameRegistry) {
|
||||
auto unit_test = ::testing::UnitTest::GetInstance().get();
|
||||
const auto& unit_test = ::testing::UnitTest::GetInstance();
|
||||
std::set<std::string> test_names;
|
||||
for (int suite_num = 0; suite_num < unit_test->total_test_suite_count();
|
||||
++suite_num) {
|
||||
|
|
|
@ -106,7 +106,7 @@ const int kTypedTests = 1;
|
|||
// Since tests can be run in any order, the values the accessors that track
|
||||
// test execution (such as failed_test_count) can not be predicted.
|
||||
TEST(ApiTest, UnitTestImmutableAccessorsWork) {
|
||||
auto unit_test = UnitTest::GetInstance().get();
|
||||
const auto& unit_test = UnitTest::GetInstance();
|
||||
|
||||
ASSERT_EQ(2 + kTypedTestSuites, unit_test->total_test_suite_count());
|
||||
EXPECT_EQ(1 + kTypedTestSuites, unit_test->test_suite_to_run_count());
|
||||
|
@ -224,7 +224,7 @@ TEST(DISABLED_Test, Dummy2) {}
|
|||
class FinalSuccessChecker : public Environment {
|
||||
protected:
|
||||
void TearDown() override {
|
||||
auto unit_test = UnitTest::GetInstance().get();
|
||||
const auto& unit_test = UnitTest::GetInstance();
|
||||
|
||||
EXPECT_EQ(1 + kTypedTestSuites, unit_test->successful_test_suite_count());
|
||||
EXPECT_EQ(3 + kTypedTests, unit_test->successful_test_count());
|
||||
|
|
|
@ -7703,7 +7703,7 @@ auto* dynamic_test = testing::RegisterTest(
|
|||
__LINE__, []() -> DynamicUnitTestFixture* { return new DynamicTest; });
|
||||
|
||||
TEST(RegisterTest, WasRegistered) {
|
||||
auto unittest = testing::UnitTest::GetInstance().get();
|
||||
const auto& unittest = testing::UnitTest::GetInstance();
|
||||
for (int i = 0; i < unittest->total_test_suite_count(); ++i) {
|
||||
auto* tests = unittest->GetTestSuite(i);
|
||||
if (tests->name() != std::string("DynamicUnitTestFixture")) continue;
|
||||
|
|
Loading…
Add table
Reference in a new issue