Runs TearDownTestSuite() for this TestSuite. This wrapper is needed for catching exceptions thrown from TearDownTestSuite().
| 13393 | // Runs TearDownTestSuite() for this TestSuite. This wrapper is |
| 13394 | // needed for catching exceptions thrown from TearDownTestSuite(). |
| 13395 | void RunTearDownTestSuite() { |
| 13396 | if (tear_down_tc_ != nullptr) { |
| 13397 | (*tear_down_tc_)(); |
| 13398 | } |
| 13399 | } |
| 13400 | |
| 13401 | // Returns true iff test passed. |
| 13402 | static bool TestPassed(const TestInfo* test_info) { |
nothing calls this directly
no outgoing calls
no test coverage detected