Adds a test to this test suite. Will delete the test upon destruction of the TestSuite object.
| 4279 | // Adds a test to this test suite. Will delete the test upon |
| 4280 | // destruction of the TestSuite object. |
| 4281 | void TestSuite::AddTestInfo(TestInfo* test_info) { |
| 4282 | test_info_list_.push_back(test_info); |
| 4283 | test_indices_.push_back(static_cast<int>(test_indices_.size())); |
| 4284 | } |
| 4285 | |
| 4286 | // Runs every test in this TestSuite. |
| 4287 | void TestSuite::Run() { |
no test coverage detected