Searched refs:TestProperty (Results 1 – 7 of 7) sorted by relevance
| /src/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()
|
| /src/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_;
|
| /src/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); 1061 const TestProperty& property) { in RecordProperty()
|
| H A D | gtest.cc | 2323 const TestProperty& TestResult::GetTestProperty(int i) const { in GetTestProperty() 2340 const TestProperty& test_property) { in RecordProperty() 2345 const std::vector<TestProperty>::iterator property_with_matching_key = in RecordProperty() 2447 const TestProperty& test_property) { in ValidateTestProperty() 4488 const TestProperty& property = result.GetTestProperty(i); in OutputXmlTestProperties() 4979 const TestProperty& property = result.GetTestProperty(i); in TestPropertiesAsJson() 5502 impl_->RecordProperty(TestProperty(key, value)); in RecordProperty() 5711 void UnitTestImpl::RecordProperty(const TestProperty& test_property) { in RecordProperty()
|
| /src/contrib/googletest/docs/reference/ |
| H A D | testing.md | 1271 ### TestProperty {#TestProperty} 1273 `testing::TestProperty` 1278 #### Public Methods {#TestProperty-public} argument 1373 `const TestProperty& TestResult::GetTestProperty(int i) const` 1375 Returns the [`TestProperty`](#TestProperty) object for the `i`-th test property.
|