Home
last modified time | relevance | path

Searched refs:should_run (Results 1 – 4 of 4) sorted by relevance

/src/contrib/googletest/googletest/test/
H A Dgtest-unittest-api_test.cc145 EXPECT_TRUE(test_suite->should_run()); in TEST()
156 EXPECT_FALSE(tests[0]->should_run()); in TEST()
162 EXPECT_TRUE(tests[1]->should_run()); in TEST()
168 EXPECT_TRUE(tests[2]->should_run()); in TEST()
174 EXPECT_TRUE(tests[3]->should_run()); in TEST()
184 EXPECT_TRUE(test_suite->should_run()); in TEST()
195 EXPECT_TRUE(tests[0]->should_run()); in TEST()
206 EXPECT_FALSE(test_suite->should_run()); in TEST()
216 EXPECT_FALSE(test_info->should_run()); in TEST()
241 EXPECT_TRUE(test_suites[0]->should_run()); in TearDown()
[all …]
/src/contrib/googletest/googletest/include/gtest/
H A Dgtest.h589 bool should_run() const { return should_run_; } in should_run() function
704 bool should_run() const { return should_run_; } in should_run() function
808 return test_info->should_run() && test_info->result()->Passed(); in TestPassed()
813 return test_info->should_run() && test_info->result()->Skipped(); in TestSkipped()
818 return test_info->should_run() && test_info->result()->Failed(); in TestFailed()
839 return test_info->should_run(); in ShouldRunTest()
/src/contrib/googletest/googletest/src/
H A Dgtest.cc452 return test_suite->should_run() && test_suite->Passed(); in TestSuitePassed()
457 return test_suite->should_run() && test_suite->Failed(); in TestSuiteFailed()
463 return test_suite->should_run(); in ShouldRunTestSuite()
3601 if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) { in PrintFailedTests()
3606 if (!test_info.should_run() || !test_info.result()->Failed()) { in PrintFailedTests()
3626 if (!test_suite.should_run()) { in PrintFailedTestSuites()
3650 if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) { in PrintSkippedTests()
3655 if (!test_info.should_run() || !test_info.result()->Skipped()) { in PrintSkippedTests()
4309 test_info.should_run() ? "run" : "notrun"); in OutputXmlTestInfo()
4311 test_info.should_run() in OutputXmlTestInfo()
[all …]
/src/contrib/googletest/docs/reference/
H A Dtesting.md696 ##### should_run {#TestSuite::should_run}
698 `bool TestSuite::should_run() const`
843 ##### should_run {#TestInfo::should_run}
845 `bool TestInfo::should_run() const`