Clears the results of all tests in this test suite.
| 4325 | |
| 4326 | // Clears the results of all tests in this test suite. |
| 4327 | void TestSuite::ClearResult() { |
| 4328 | ad_hoc_test_result_.Clear(); |
| 4329 | ForEach(test_info_list_, TestInfo::ClearTestResult); |
| 4330 | } |
| 4331 | |
| 4332 | // Shuffles the tests in this test suite. |
| 4333 | void TestSuite::ShuffleTests(internal::Random* random) { |
no test coverage detected