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.
| 3674 | // Gets the number of all test parts. This is the sum of the number |
| 3675 | // of successful test parts and the number of failed test parts. |
| 3676 | int TestResult::total_part_count() const { |
| 3677 | return static_cast<int>(test_part_results_.size()); |
| 3678 | } |
| 3679 | |
| 3680 | // Returns the number of the test properties. |
| 3681 | int TestResult::test_property_count() const { |