Home
last modified time | relevance | path

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

/third_party/googletest/googletest/test/
H A Dgtest_xml_output_unittest_.cc113 static void SetUpTestSuite() { RecordProperty("SetUpTestSuite", "yes"); } in SetUpTestSuite()
115 RecordProperty("TearDownTestSuite", "aye"); in TearDownTestSuite()
120 RecordProperty("key_1", "1"); in TEST_F()
124 RecordProperty("key_int", 1); in TEST_F()
128 RecordProperty("key_1", "1"); in TEST_F()
129 RecordProperty("key_2", "2"); in TEST_F()
130 RecordProperty("key_3", "3"); in TEST_F()
134 RecordProperty("key_1", "1"); in TEST_F()
135 RecordProperty("key_1", "2"); in TEST_F()
138 TEST(NoFixtureTest, RecordProperty) { in TEST()
[all...]
H A Dgtest_xml_outfile1_test_.cc37 void SetUp() override { RecordProperty("SetUpProp", 1); }
38 void TearDown() override { RecordProperty("TearDownProp", 1); }
42 RecordProperty("TestSomeProperty", 1); in TEST_F()
H A Dgtest_xml_outfile2_test_.cc37 void SetUp() override { RecordProperty("SetUpProp", 2); }
38 void TearDown() override { RecordProperty("TearDownProp", 2); }
44 RecordProperty("TestSomeProperty", prop_two); in TEST_F()
H A Dgtest_stress_test.cc93 // RecordProperty() should interact safely with other threads as well. in ManyAsserts()
95 Test::RecordProperty(IdToKey(id, "string").c_str(), IdToString(id).c_str()); in ManyAsserts()
96 Test::RecordProperty(IdToKey(id, "int").c_str(), id); in ManyAsserts()
97 Test::RecordProperty("shared_key", IdToString(id).c_str()); in ManyAsserts()
H A Dgtest_unittest.cc182 // Forwards to UnitTest::RecordProperty() to bypass access controls.
184 unit_test_.RecordProperty(key, value); in UnitTestRecordProperty()
1486 TestResultAccessor::RecordProperty(&test_result, "testcase", property); in TEST()
1498 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1); in TEST()
1499 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2); in TEST()
1510 // Tests TestResult::RecordProperty() overrides values for duplicate keys.
1517 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_1); in TEST()
1518 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2_1); in TEST()
1519 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_2); in TEST()
1520 TestResultAccessor::RecordProperty( in TEST()
[all...]
H A Dgtest-unittest-api_test.cc129 RecordProperty("key", "value"); in TEST()
/third_party/googletest/googletest/src/
H A Dgtest-internal-inl.h749 void RecordProperty(const TestProperty& test_property);
1042 static void RecordProperty(TestResult* test_result, in RecordProperty() function in testing::internal::TestResultAccessor
1045 test_result->RecordProperty(xml_element, property); in RecordProperty()
H A Dgtest.cc2269 void TestResult::RecordProperty(const std::string& xml_element,
2303 // still RecordProperty("result") or "RecordProperty(timestamp")
2363 ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name
2459 void Test::RecordProperty(const std::string& key, const std::string& value) {
2460 UnitTest::GetInstance()->RecordProperty(key, value);
2464 void Test::RecordProperty(const std::string& key, int64_t value) {
2465 RecordProperty(key, (Message() << value).GetString());
5370 void UnitTest::RecordProperty(const std::string& key,
5372 impl_->RecordProperty(TestPropert
[all...]
/third_party/node/deps/googletest/src/
H A Dgtest-internal-inl.h750 void RecordProperty(const TestProperty& test_property);
1043 static void RecordProperty(TestResult* test_result, in RecordProperty() function in testing::internal::TestResultAccessor
1046 test_result->RecordProperty(xml_element, property); in RecordProperty()
H A Dgtest.cc2286 void TestResult::RecordProperty(const std::string& xml_element,
2320 // still RecordProperty("result") or "RecordProperty(timestamp")
2383 ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name
2479 void Test::RecordProperty(const std::string& key, const std::string& value) {
2480 UnitTest::GetInstance()->RecordProperty(key, value);
5390 void UnitTest::RecordProperty(const std::string& key,
5392 impl_->RecordProperty(TestProperty(key, value));
5601 void UnitTestImpl::RecordProperty(const TestProperty& test_property) {
5615 test_result->RecordProperty(xml_elemen
[all...]
/third_party/mesa3d/src/gtest/src/
H A Dgtest-internal-inl.h740 void RecordProperty(const TestProperty& test_property);
1037 static void RecordProperty(TestResult* test_result, in RecordProperty() function in testing::internal::TestResultAccessor
1040 test_result->RecordProperty(xml_element, property); in RecordProperty()
H A Dgtest.cc2066 void TestResult::RecordProperty(const std::string& xml_element, in RecordProperty() function in testing::TestResult
2106 // still RecordProperty("result") or "RecordProperty(timestamp")
2166 ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name in ValidateTestPropertyName()
2268 void Test::RecordProperty(const std::string& key, const std::string& value) { in RecordProperty() function in testing::Test
2269 UnitTest::GetInstance()->RecordProperty(key, value); in RecordProperty()
2273 void Test::RecordProperty(const std::string& key, int value) { in RecordProperty() function in testing::Test
2276 RecordProperty(key, value_message.GetString().c_str()); in RecordProperty()
4838 void UnitTest::RecordProperty(const std::string& key, in RecordProperty() function in testing::UnitTest
4840 impl_->RecordProperty(TestPropert in RecordProperty()
5043 void UnitTestImpl::RecordProperty(const TestProperty& test_property) { RecordProperty() function in testing::internal::UnitTestImpl
[all...]
/third_party/node/deps/googletest/include/gtest/
H A Dgtest.h289 // not members of the test fixture. Calls to RecordProperty made during
294 // corresponding <testsuite> element. Calls to RecordProperty made in the
298 static void RecordProperty(const std::string& key, const std::string& value);
303 static void RecordProperty(const std::string& key, const T& value) { in RecordProperty() function in testing::Test
304 RecordProperty(key, (Message() << value).GetString()); in RecordProperty()
478 void RecordProperty(const std::string& xml_element,
1259 void RecordProperty(const std::string& key, const std::string& value);
/third_party/googletest/googletest/include/gtest/
H A Dgtest.h303 // not members of the test fixture. Calls to RecordProperty made during
308 // corresponding <testsuite> element. Calls to RecordProperty made in the
312 static void RecordProperty(const std::string& key, const std::string& value);
313 static void RecordProperty(const std::string& key, int64_t value);
486 void RecordProperty(const std::string& xml_element,
1264 void RecordProperty(const std::string& key, const std::string& value);
/third_party/mesa3d/src/gtest/include/gtest/
H A Dgtest.h452 // not members of the test fixture. Calls to RecordProperty made during
457 // corresponding <testsuite> element. Calls to RecordProperty made in the
461 static void RecordProperty(const std::string& key, const std::string& value);
462 static void RecordProperty(const std::string& key, int value);
641 void RecordProperty(const std::string& xml_element,
1405 void RecordProperty(const std::string& key, const std::string& value);

Completed in 42 milliseconds