Clears the results of all tests in this test case.
| 3939 | |
| 3940 | // Clears the results of all tests in this test case. |
| 3941 | void TestCase::ClearResult() { |
| 3942 | ad_hoc_test_result_.Clear(); |
| 3943 | ForEach(test_info_list_, TestInfo::ClearTestResult); |
| 3944 | } |
| 3945 | |
| 3946 | // Shuffles the tests in this test case. |
| 3947 | void TestCase::ShuffleTests(internal::Random* random) { |
no test coverage detected