Gets the number of all test parts. This is the sum of the number of successful test parts and the number of failed test parts.
| 3723 | // Gets the number of all test parts. This is the sum of the number |
| 3724 | // of successful test parts and the number of failed test parts. |
| 3725 | int TestResult::total_part_count() const { |
| 3726 | return static_cast<int>(test_part_results_.size()); |
| 3727 | } |
| 3728 | |
| 3729 | // Returns the number of the test properties. |
| 3730 | int TestResult::test_property_count() const { |
no test coverage detected