Home | History | Annotate | Download | only in gtest

Lines Matching refs:xml_element

1453                              const std::string& xml_element,
1455 test_result->RecordProperty(xml_element, property);
3218 void TestResult::RecordProperty(const std::string& xml_element,
3220 if (!ValidateTestProperty(xml_element, test_property)) {
3274 const std::string& xml_element) {
3275 if (xml_element == "testsuites") {
3277 } else if (xml_element == "testsuite") {
3279 } else if (xml_element == "testcase") {
3282 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element;
3315 // xml_element. Returns true if the property is valid.
3316 bool TestResult::ValidateTestProperty(const std::string& xml_element,
3319 GetReservedAttributesForElement(xml_element));
5533 std::string xml_element;
5537 xml_element = "testcase";
5540 xml_element = "testsuite";
5543 xml_element = "testsuites";
5546 test_result->RecordProperty(xml_element, test_property);