Home
last modified time | relevance | path

Searched refs:RecordProperty (Results 1 – 10 of 10) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest_xml_output_unittest_.cc99 static void SetUpTestCase() { RecordProperty("SetUpTestCase", "yes"); } in SetUpTestCase()
100 static void TearDownTestCase() { RecordProperty("TearDownTestCase", "aye"); } in TearDownTestCase()
104 RecordProperty("key_1", "1"); in TEST_F()
108 RecordProperty("key_int", 1); in TEST_F()
112 RecordProperty("key_1", "1"); in TEST_F()
113 RecordProperty("key_2", "2"); in TEST_F()
114 RecordProperty("key_3", "3"); in TEST_F()
118 RecordProperty("key_1", "1"); in TEST_F()
119 RecordProperty("key_1", "2"); in TEST_F()
122 TEST(NoFixtureTest, RecordProperty) { in TEST() argument
[all …]
Dgtest_xml_outfile1_test_.cc40 RecordProperty("SetUpProp", 1); in SetUp()
43 RecordProperty("TearDownProp", 1); in TearDown()
48 RecordProperty("TestSomeProperty", 1); in TEST_F()
Dgtest_xml_outfile2_test_.cc40 RecordProperty("SetUpProp", 2); in SetUp()
43 RecordProperty("TearDownProp", 2); in TearDown()
48 RecordProperty("TestSomeProperty", 2); in TEST_F()
Dgtest_stress_test.cc106 Test::RecordProperty(IdToKey(id, "string").c_str(), IdToString(id).c_str()); in ManyAsserts()
107 Test::RecordProperty(IdToKey(id, "int").c_str(), id); in ManyAsserts()
108 Test::RecordProperty("shared_key", IdToString(id).c_str()); in ManyAsserts()
Dgtest_unittest.cc189 unit_test_.RecordProperty(key, value); in UnitTestRecordProperty()
1464 TestResultAccessor::RecordProperty(&test_result, "testcase", property); in TEST()
1476 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1); in TEST()
1477 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2); in TEST()
1495 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_1); in TEST()
1496 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2_1); in TEST()
1497 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_2); in TEST()
1498 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2_2); in TEST()
1516 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1); in TEST()
1517 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2); in TEST()
[all …]
Dgtest-unittest-api_test.cc137 RecordProperty("key", "value"); in TEST()
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-internal-inl.h718 void RecordProperty(const TestProperty& test_property);
1045 static void RecordProperty(TestResult* test_result, in RecordProperty() function
1048 test_result->RecordProperty(xml_element, property); in RecordProperty()
Dgtest.cc1719 void TestResult::RecordProperty(const std::string& xml_element, in RecordProperty() function in testing::TestResult
1898 void Test::RecordProperty(const std::string& key, const std::string& value) { in RecordProperty() function in testing::Test
1899 UnitTest::GetInstance()->RecordProperty(key, value); in RecordProperty()
1903 void Test::RecordProperty(const std::string& key, int value) { in RecordProperty() function in testing::Test
1906 RecordProperty(key, value_message.GetString().c_str()); in RecordProperty()
3775 void UnitTest::RecordProperty(const std::string& key, in RecordProperty() function in testing::UnitTest
3777 impl_->RecordProperty(TestProperty(key, value)); in RecordProperty()
3955 void UnitTestImpl::RecordProperty(const TestProperty& test_property) { in RecordProperty() function in testing::internal::UnitTestImpl
3969 test_result->RecordProperty(xml_element, test_property); in RecordProperty()
/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest.h398 static void RecordProperty(const std::string& key, const std::string& value);
399 static void RecordProperty(const std::string& key, int value);
569 void RecordProperty(const std::string& xml_element,
1217 void RecordProperty(const std::string& key, const std::string& value);
/ndk/sources/third_party/googletest/googletest/
DCHANGES5 * New feature: Test::RecordProperty() can now be used outside of the