Lines Matching full:testresult
1011 // Returns the TestResult for the test that's currently running, or
1012 // the TestResult for the ad hoc test if no test is running.
1013 TestResult* current_test_result();
1015 // Returns the TestResult for the ad hoc test.
1016 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; }
1130 // Adds a TestProperty to the current TestResult object when invoked in a
1299 TestResult ad_hoc_test_result_;
1454 // TestResult contains some private methods that should be hidden from
1462 static void RecordProperty(TestResult* test_result,
1468 static void ClearTestPartResults(TestResult* test_result) {
1473 const TestResult& test_result) {
3191 // class TestResult
3193 // Creates an empty TestResult.
3194 TestResult::TestResult()
3200 TestResult::~TestResult() {
3206 const TestPartResult& TestResult::GetTestPartResult(int i) const {
3215 const TestProperty& TestResult::GetTestProperty(int i) const {
3222 void TestResult::ClearTestPartResults() {
3227 void TestResult::AddTestPartResult(const TestPartResult& test_part_result) {
3234 void TestResult::RecordProperty(const std::string& xml_element,
3332 bool TestResult::ValidateTestProperty(const std::string& xml_element,
3339 void TestResult::Clear() {
3347 bool TestResult::Failed() const {
3361 bool TestResult::HasFatalFailure() const {
3371 bool TestResult::HasNonfatalFailure() const {
3377 int TestResult::total_part_count() const {
3382 int TestResult::test_property_count() const {
4584 static std::string TestPropertiesAsXmlAttributes(const TestResult& result);
4794 const TestResult& result = *test_info.result();
4908 const TestResult& result) {
5244 // Returns the TestResult containing information on test failures and
5246 const TestResult& UnitTest::ad_hoc_test_result() const {
5281 // Adds a TestPartResult to the current TestResult object. All Google Test
5347 // Adds a TestProperty to the current TestResult object when invoked from
5551 // Adds a TestProperty to the current TestResult object when invoked in a
5558 TestResult* test_result; // TestResult appropriate for property recording.
6106 // Returns the TestResult for the test that's currently running, or
6107 // the TestResult for the ad hoc test if no test is running.
6108 TestResult* UnitTestImpl::current_test_result() {