Runs SetUpTestSuite() for this TestSuite. This wrapper is needed for catching exceptions thrown from SetUpTestSuite().
| 13385 | // Runs SetUpTestSuite() for this TestSuite. This wrapper is needed |
| 13386 | // for catching exceptions thrown from SetUpTestSuite(). |
| 13387 | void RunSetUpTestSuite() { |
| 13388 | if (set_up_tc_ != nullptr) { |
| 13389 | (*set_up_tc_)(); |
| 13390 | } |
| 13391 | } |
| 13392 | |
| 13393 | // Runs TearDownTestSuite() for this TestSuite. This wrapper is |
| 13394 | // needed for catching exceptions thrown from TearDownTestSuite(). |
nothing calls this directly
no outgoing calls
no test coverage detected