Searched refs:test_result (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12-stable/contrib/googletest/googletest/src/ |
| D | gtest-internal-inl.h | 1021 static void RecordProperty(TestResult* test_result, in RecordProperty() argument 1024 test_result->RecordProperty(xml_element, property); in RecordProperty() 1027 static void ClearTestPartResults(TestResult* test_result) { in ClearTestPartResults() argument 1028 test_result->ClearTestPartResults(); in ClearTestPartResults() 1032 const TestResult& test_result) { in test_part_results() argument 1033 return test_result.test_part_results(); in test_part_results()
|
| D | gtest.cc | 4973 TestResult* test_result; // TestResult appropriate for property recording. in RecordProperty() local 4977 test_result = &(current_test_info_->result_); in RecordProperty() 4980 test_result = &(current_test_case_->ad_hoc_test_result_); in RecordProperty() 4983 test_result = &ad_hoc_test_result_; in RecordProperty() 4985 test_result->RecordProperty(xml_element, test_property); in RecordProperty() 5251 TestResult& test_result = in RunAllTests() local 5253 for (int j = 0; j < test_result.total_part_count(); ++j) { in RunAllTests() 5255 test_result.GetTestPartResult(j); in RunAllTests()
|
| /freebsd-12-stable/contrib/googletest/googletest/test/ |
| D | gtest_unittest.cc | 1461 TestResult test_result; in TEST() local 1462 ASSERT_EQ(0, test_result.test_property_count()); in TEST() 1467 TestResult test_result; in TEST() local 1469 TestResultAccessor::RecordProperty(&test_result, "testcase", property); in TEST() 1470 ASSERT_EQ(1, test_result.test_property_count()); in TEST() 1471 const TestProperty& actual_property = test_result.GetTestProperty(0); in TEST() 1478 TestResult test_result; in TEST() local 1481 TestResultAccessor::RecordProperty(&test_result, "testcase", property_1); in TEST() 1482 TestResultAccessor::RecordProperty(&test_result, "testcase", property_2); in TEST() 1483 ASSERT_EQ(2, test_result.test_property_count()); in TEST() [all …]
|