Searched refs:RecordProperty (Results 1 - 9 of 9) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest_xml_outfile1_test_.cc40 RecordProperty("SetUpProp", 1);
43 RecordProperty("TearDownProp", 1);
48 RecordProperty("TestSomeProperty", 1);
H A Dgtest_xml_outfile2_test_.cc40 RecordProperty("SetUpProp", 2);
43 RecordProperty("TearDownProp", 2);
48 RecordProperty("TestSomeProperty", 2);
H A Dgtest_xml_output_unittest_.cc99 static void SetUpTestCase() { RecordProperty("SetUpTestCase", "yes"); }
100 static void TearDownTestCase() { RecordProperty("TearDownTestCase", "aye"); }
104 RecordProperty("key_1", "1");
108 RecordProperty("key_int", 1);
112 RecordProperty("key_1", "1");
113 RecordProperty("key_2", "2");
114 RecordProperty("key_3", "3");
118 RecordProperty("key_1", "1");
119 RecordProperty("key_1", "2");
122 TEST(NoFixtureTest, RecordProperty) {
[all...]
H A Dgtest_stress_test.cc104 // RecordProperty() should interact safely with other threads as well.
106 Test::RecordProperty(IdToKey(id, "string").c_str(), IdToString(id).c_str());
107 Test::RecordProperty(IdToKey(id, "int").c_str(), id);
108 Test::RecordProperty("shared_key", IdToString(id).c_str());
H A Dgtest-unittest-api_test.cc137 RecordProperty("key", "value");
H A Dgtest_unittest.cc188 // Forwards to UnitTest::RecordProperty() to bypass access controls.
190 unit_test_.RecordProperty(key, value);
1448 TestResultAccessor::RecordProperty(&test_result, "testcase", property);
1460 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1);
1461 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2);
1472 // Tests TestResult::RecordProperty() overrides values for duplicate keys.
1479 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_1);
1480 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2_1);
1481 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_2);
1482 TestResultAccessor::RecordProperty(
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h715 void RecordProperty(const TestProperty& test_property);
1016 static void RecordProperty(TestResult* test_result, function in class:testing::internal::TestResultAccessor
1019 test_result->RecordProperty(xml_element, property);
H A Dgtest.cc2057 void TestResult::RecordProperty(const std::string& xml_element, function in class:testing::TestResult
2145 ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name
2237 void Test::RecordProperty(const std::string& key, const std::string& value) { function in class:testing::Test
2238 UnitTest::GetInstance()->RecordProperty(key, value);
2242 void Test::RecordProperty(const std::string& key, int value) { function in class:testing::Test
2245 RecordProperty(key, value_message.GetString().c_str());
4175 void UnitTest::RecordProperty(const std::string& key, function in class:testing::UnitTest
4177 impl_->RecordProperty(TestProperty(key, value));
4372 void UnitTestImpl::RecordProperty(const TestProperty& test_property) { function in class:testing::internal::UnitTestImpl
4386 test_result->RecordProperty(xml_elemen
[all...]
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h413 // not members of the test fixture. Calls to RecordProperty made during
418 // corresponding <testsuite> element. Calls to RecordProperty made in the
422 static void RecordProperty(const std::string& key, const std::string& value);
423 static void RecordProperty(const std::string& key, int value);
592 void RecordProperty(const std::string& xml_element,
1280 void RecordProperty(const std::string& key, const std::string& value);

Completed in 53 milliseconds