Home
last modified time | relevance | path

Searched refs:TestProperty (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/googletest/googletest/test/
H A Dgtest_stress_test.cc70 const std::vector<TestProperty>& properties, int id, const char* suffix) { in ExpectKeyAndValueWereRecordedForId()
72 const std::vector<TestProperty>::const_iterator property = in ExpectKeyAndValueWereRecordedForId()
137 std::vector<TestProperty> properties; in TEST()
H A Dgtest_unittest.cc229 using testing::TestProperty;
1147 TestProperty property("key", "1"); in TEST()
1154 TestProperty property("key", "1"); in TEST()
1386 const TestProperty property("key", "value"); in TEST()
1392 TestProperty property("key", "value_1"); in TEST()
1511 TestProperty property("key_1", "1"); in TEST()
1514 const TestProperty& actual_property = test_result.GetTestProperty(0); in TEST()
1522 TestProperty property_1("key_1", "1"); in TEST()
1523 TestProperty property_2("key_2", "2"); in TEST()
1527 const TestProperty& actual_property_1 = test_result.GetTestProperty(0); in TEST()
[all …]
H A Dgtest-unittest-api_test.cc297 const TestProperty& property = tests[3]->result()->GetTestProperty(0); in TearDown()
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h369 class TestProperty {
374 TestProperty(const std::string& a_key, const std::string& a_value) in TestProperty() function
443 const TestProperty& GetTestProperty(int i) const;
462 const std::vector<TestProperty>& test_properties() const { in test_properties()
479 const TestProperty& test_property);
485 const TestProperty& test_property);
509 std::vector<TestProperty> test_properties_;
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h351 bool operator()(const TestProperty& test_property) const { in operator()
741 void RecordProperty(const TestProperty& test_property);
1057 const TestProperty& property) { in RecordProperty()
H A Dgtest.cc2296 const TestProperty& TestResult::GetTestProperty(int i) const { in GetTestProperty()
2313 const TestProperty& test_property) { in RecordProperty()
2318 const std::vector<TestProperty>::iterator property_with_matching_key = in RecordProperty()
2420 const TestProperty& test_property) { in ValidateTestProperty()
4443 const TestProperty& property = result.GetTestProperty(i); in TestPropertiesAsXmlAttributes()
4461 const TestProperty& property = result.GetTestProperty(i); in OutputXmlTestProperties()
4930 const TestProperty& property = result.GetTestProperty(i); in TestPropertiesAsJson()
5453 impl_->RecordProperty(TestProperty(key, value)); in RecordProperty()
5662 void UnitTestImpl::RecordProperty(const TestProperty& test_property) { in RecordProperty()
/freebsd/contrib/googletest/docs/reference/
H A Dtesting.md1174 ### TestProperty {#TestProperty}
1176 `testing::TestProperty`
1181 #### Public Methods {#TestProperty-public} argument
1276 `const TestProperty& TestResult::GetTestProperty(int i) const`
1278 Returns the [`TestProperty`](#TestProperty) object for the `i`-th test property.