Home | History | Annotate | Download | only in gtest

Lines Matching defs:property

754   // Returns true iff the test name of test property matches on key_.
1122 // context of a test or a test case, or to the global property set. If the
1123 // result already contains a property with the same key, the value will be
1454 const TestProperty& property) {
1455 test_result->RecordProperty(xml_element, property);
3196 // Returns the i-th test property. i can range from 0 to
3215 // Adds a test property to the list. If a property with the same key as the
3216 // supplied property is already represented, the value of this test_property
3315 // xml_element. Returns true if the property is valid.
4557 // delimited XML attributes based on the property key="value" pairs.
4882 // delimited XML attributes based on the property key="value" pairs.
4887 const TestProperty& property = result.GetTestProperty(i);
4888 attributes << " " << property.key() << "="
4889 << "\"" << EscapeXmlAttribute(property.value()) << "\"";
5325 // from SetUpTestCase or TearDownTestCase, or to the global property set
5326 // when invoked elsewhere. If the result already contains a property with
5529 // from SetUpTestCase/TearDownTestCase, or to the global property set
5530 // otherwise. If the result already contains a property with the same key,
5534 TestResult* test_result; // TestResult appropriate for property recording.