telemetry.page.page_test_results
index
telemetry/page/page_test_results.py

# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

 
Modules
       
logging
sys
traceback
unittest

 
Classes
       
unittest.result.TestResult(__builtin__.object)
PageTestResults

 
class PageTestResults(unittest.result.TestResult)
    
Method resolution order:
PageTestResults
unittest.result.TestResult
__builtin__.object

Methods defined here:
AddError(self, page, err)
AddErrorMessage(self, page, message)
AddFailure(self, page, err)
AddFailureMessage(self, page, message)
AddSkip(self, page, reason)
AddSuccess(self, page)
PrintSummary(self)
StartTest(self, page)
StopTest(self, page)
__init__(self)
addSkip(self, test, reason)
addSuccess(self, test)

Methods inherited from unittest.result.TestResult:
__repr__(self)
addError(self, *args, **kw)
Called when an error has occurred. 'err' is a tuple of values as
returned by sys.exc_info().
addExpectedFailure(self, test, err)
Called when an expected failure/error occured.
addFailure(self, *args, **kw)
Called when an error has occurred. 'err' is a tuple of values as
returned by sys.exc_info().
addUnexpectedSuccess(self, *args, **kw)
Called when a test was expected to fail, but succeed.
printErrors(self)
Called by TestRunner after test run
startTest(self, test)
Called when the given test is about to be 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)