Searched refs:TestProperty (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/googletest/googletest/test/ |
H A D | gtest_stress_test.cc | 70 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 D | gtest_unittest.cc | 229 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 D | gtest-unittest-api_test.cc | 297 const TestProperty& property = tests[3]->result()->GetTestProperty(0); in TearDown()
|
/freebsd/contrib/googletest/googletest/include/gtest/ |
H A D | gtest.h | 369 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 D | gtest-internal-inl.h | 351 bool operator()(const TestProperty& test_property) const { in operator() 741 void RecordProperty(const TestProperty& test_property); 1057 const TestProperty& property) { in RecordProperty()
|
H A D | gtest.cc | 2296 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 D | testing.md | 1174 ### 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.
|