Clears the results of all tests in this test case.
| 4225 | |
| 4226 | // Clears the results of all tests in this test case. |
| 4227 | void TestCase::ClearResult() { |
| 4228 | ad_hoc_test_result_.Clear(); |
| 4229 | ForEach(test_info_list_, TestInfo::ClearTestResult); |
| 4230 | } |
| 4231 | |
| 4232 | // Shuffles the tests in this test case. |
| 4233 | void TestCase::ShuffleTests(internal::Random* random) { |
no test coverage detected