Home | History | Annotate | Download | only in src

Lines Matching refs:xml_element

1734 void TestResult::RecordProperty(const std::string& xml_element,
1736 if (!ValidateTestProperty(xml_element, test_property)) {
1790 const std::string& xml_element) {
1791 if (xml_element == "testsuites") {
1793 } else if (xml_element == "testsuite") {
1795 } else if (xml_element == "testcase") {
1798 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element;
1831 // xml_element. Returns true if the property is valid.
1832 bool TestResult::ValidateTestProperty(const std::string& xml_element,
1835 GetReservedAttributesForElement(xml_element));
4049 std::string xml_element;
4053 xml_element = "testcase";
4056 xml_element = "testsuite";
4059 xml_element = "testsuites";
4062 test_result->RecordProperty(xml_element, test_property);