Lines Matching full:testresult
1002 // Returns the TestResult for the test that's currently running, or
1003 // the TestResult for the ad hoc test if no test is running.
1004 TestResult* current_test_result();
1006 // Returns the TestResult for the ad hoc test.
1007 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; }
1121 // Adds a TestProperty to the current TestResult object when invoked in a
1290 TestResult ad_hoc_test_result_;
1444 // TestResult contains some private methods that should be hidden from
1452 static void RecordProperty(TestResult* test_result,
1458 static void ClearTestPartResults(TestResult* test_result) {
1463 const TestResult& test_result) {
3175 // class TestResult
3177 // Creates an empty TestResult.
3178 TestResult::TestResult()
3184 TestResult::~TestResult() {
3190 const TestPartResult& TestResult::GetTestPartResult(int i) const {
3199 const TestProperty& TestResult::GetTestProperty(int i) const {
3206 void TestResult::ClearTestPartResults() {
3211 void TestResult::AddTestPartResult(const TestPartResult& test_part_result) {
3218 void TestResult::RecordProperty(const std::string& xml_element,
3316 bool TestResult::ValidateTestProperty(const std::string& xml_element,
3323 void TestResult::Clear() {
3331 bool TestResult::Failed() const {
3345 bool TestResult::HasFatalFailure() const {
3355 bool TestResult::HasNonfatalFailure() const {
3361 int TestResult::total_part_count() const {
3366 int TestResult::test_property_count() const {
4560 static std::string TestPropertiesAsXmlAttributes(const TestResult& result);
4770 const TestResult& result = *test_info.result();
4884 const TestResult& result) {
5220 // Returns the TestResult containing information on test failures and
5222 const TestResult& UnitTest::ad_hoc_test_result() const {
5257 // Adds a TestPartResult to the current TestResult object. All Google Test
5323 // Adds a TestProperty to the current TestResult object when invoked from
5527 // Adds a TestProperty to the current TestResult object when invoked in a
5534 TestResult* test_result; // TestResult appropriate for property recording.
6076 // Returns the TestResult for the test that's currently running, or
6077 // the TestResult for the ad hoc test if no test is running.
6078 TestResult* UnitTestImpl::current_test_result() {