Home | History | Annotate | Download | only in src

Lines Matching full:xml_element

2057 void TestResult::RecordProperty(const std::string& xml_element,
2059 if (!ValidateTestProperty(xml_element, test_property)) {
2113 const std::string& xml_element) {
2114 if (xml_element == "testsuites") {
2116 } else if (xml_element == "testsuite") {
2118 } else if (xml_element == "testcase") {
2121 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element;
2154 // xml_element. Returns true if the property is valid.
2155 bool TestResult::ValidateTestProperty(const std::string& xml_element,
2158 GetReservedAttributesForElement(xml_element));
4371 std::string xml_element;
4375 xml_element = "testcase";
4378 xml_element = "testsuite";
4381 xml_element = "testsuites";
4384 test_result->RecordProperty(xml_element, test_property);