Lines Matching defs:xml_element
2312 void TestResult::RecordProperty(const std::string& xml_element,
2314 if (!ValidateTestProperty(xml_element, test_property)) {
2357 const std::string& xml_element) {
2358 if (xml_element == "testsuites") {
2360 } else if (xml_element == "testsuite") {
2362 } else if (xml_element == "testcase") {
2365 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element;
2375 const std::string& xml_element) {
2376 if (xml_element == "testsuites") {
2378 } else if (xml_element == "testsuite") {
2380 } else if (xml_element == "testcase") {
2383 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element;
2418 // xml_element. Returns true if the property is valid.
2419 bool TestResult::ValidateTestProperty(const std::string& xml_element,
2422 GetReservedAttributesForElement(xml_element));
5663 std::string xml_element;
5667 xml_element = "testcase";
5670 xml_element = "testsuite";
5673 xml_element = "testsuites";
5676 test_result->RecordProperty(xml_element, test_property);