Adds a failure if the key is a reserved attribute of the element named xml_element. Returns true if the property is valid.
| 3629 | // Adds a failure if the key is a reserved attribute of the element named |
| 3630 | // xml_element. Returns true if the property is valid. |
| 3631 | bool TestResult::ValidateTestProperty(const std::string& xml_element, |
| 3632 | const TestProperty& test_property) { |
| 3633 | return ValidateTestPropertyName(test_property.key(), |
| 3634 | GetReservedAttributesForElement(xml_element)); |
| 3635 | } |
| 3636 | |
| 3637 | // Clears the object. |
| 3638 | void TestResult::Clear() { |
nothing calls this directly
no test coverage detected