Clears the results of all tests in this test case.
| 2455 | |
| 2456 | // Clears the results of all tests in this test case. |
| 2457 | void TestCase::ClearResult() { |
| 2458 | ad_hoc_test_result_.Clear(); |
| 2459 | ForEach(test_info_list_, TestInfo::ClearTestResult); |
| 2460 | } |
| 2461 | |
| 2462 | // Shuffles the tests in this test case. |
| 2463 | void TestCase::ShuffleTests(internal::Random* random) { |
no test coverage detected