Adds a failure if the key is a reserved attribute of the element named xml_element. Returns true if the property is valid.
| 3314 | // Adds a failure if the key is a reserved attribute of the element named |
| 3315 | // xml_element. Returns true if the property is valid. |
| 3316 | bool TestResult::ValidateTestProperty(const std::string& xml_element, |
| 3317 | const TestProperty& test_property) { |
| 3318 | return ValidateTestPropertyName(test_property.key(), |
| 3319 | GetReservedAttributesForElement(xml_element)); |
| 3320 | } |
| 3321 | |
| 3322 | // Clears the object. |
| 3323 | void TestResult::Clear() { |
nothing calls this directly
no test coverage detected