Searched refs:TestProperty (Results 1 - 6 of 6) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest_stress_test.cc77 const std::vector<TestProperty>& properties,
80 const std::vector<TestProperty>::const_iterator property =
147 std::vector<TestProperty> properties;
H A Dgtest_unittest.cc233 using testing::TestProperty;
1066 // Tests TestProperty construction.
1068 TestProperty property("key", "1");
1073 // Tests TestProperty replacing a value.
1075 TestProperty property("key", "1");
1315 // Tests the TestProperty class.
1318 const TestProperty property("key", "value");
1324 TestProperty property("key", "value_1");
1447 TestProperty property("key_1", "1");
1450 const TestProperty
[all...]
H A Dgtest-unittest-api_test.cc308 const TestProperty& property = tests[3]->result()->GetTestProperty(0);
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h485 // Don't inherit from TestProperty as its destructor is not virtual.
486 class TestProperty { class in namespace:testing
488 // C'tor. TestProperty does NOT have a default constructor.
490 // TestProperty object.
491 TestProperty(const std::string& a_key, const std::string& a_value) : function in class:testing::TestProperty
561 const TestProperty& GetTestProperty(int i) const;
579 const std::vector<TestProperty>& test_properties() const {
593 const TestProperty& test_property);
599 const TestProperty& test_property);
623 std::vector<TestProperty> test_properties
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h344 // A predicate that checks the key of a TestProperty against a known key.
355 bool operator()(const TestProperty& test_property) const {
711 // Adds a TestProperty to the current TestResult object when invoked in a
715 void RecordProperty(const TestProperty& test_property);
1018 const TestProperty& property) {
H A Dgtest.cc2038 const TestProperty& TestResult::GetTestProperty(int i) const {
2058 const TestProperty& test_property) {
2063 const std::vector<TestProperty>::iterator property_with_matching_key =
2156 const TestProperty& test_property) {
3745 const TestProperty& property = result.GetTestProperty(i);
4170 // Adds a TestProperty to the current TestResult object when invoked from
4177 impl_->RecordProperty(TestProperty(key, value));
4367 // Adds a TestProperty to the current TestResult object when invoked in a
4372 void UnitTestImpl::RecordProperty(const TestProperty& test_property) {

Completed in 49 milliseconds