| |
- Method resolution order:
- GTestTestResults
- telemetry.page.page_test_results.PageTestResults
- unittest.result.TestResult
- __builtin__.object
Methods defined here:
- PrintSummary(self)
- __init__(self)
- addError(self, test, err)
- addFailure(self, test, err)
- addSuccess(self, test)
- startTest(self, test)
Data descriptors defined here:
- num_errors
Methods inherited from telemetry.page.page_test_results.PageTestResults:
- AddError(self, page, err)
- AddErrorMessage(self, page, message)
- AddFailure(self, page, err)
- AddFailureMessage(self, page, message)
- AddSkip(self, page, reason)
- AddSuccess(self, page)
- StartTest(self, page)
- StopTest(self, page)
- addSkip(self, test, reason)
Methods inherited from unittest.result.TestResult:
- __repr__(self)
- addExpectedFailure(self, test, err)
- Called when an expected failure/error occured.
- addUnexpectedSuccess(self, *args, **kw)
- Called when a test was expected to fail, but succeed.
- printErrors(self)
- Called by TestRunner after test run
- startTestRun(self)
- Called once before any tests are executed.
See startTest for a method called before each test.
- stop(self)
- Indicates that the tests should be aborted
- stopTest(self, test)
- Called when the given test has been run
- stopTestRun(self)
- Called once after all tests are executed.
See stopTest for a method called after each test.
- wasSuccessful(self)
- Tells whether or not this result was a success
Data descriptors inherited from unittest.result.TestResult:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|