Package pysys :: Package unit :: Module pyunit :: Class __PysysTestResult
[hide private]
[frames] | no frames]

Class __PysysTestResult

source code

                object --+    
                         |    
unittest.result.TestResult --+
                             |
                            __PysysTestResult

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
addSuccess(self, test)
Called when a test has completed successfully
source code

Inherited from unittest.result.TestResult: __repr__, addError, addExpectedFailure, addFailure, addSkip, addUnexpectedSuccess, printErrors, startTest, startTestRun, stop, stopTest, stopTestRun, wasSuccessful

Inherited from unittest.result.TestResult (private): _count_relevant_tb_levels, _exc_info_to_string, _is_relevant_tb_level, _restoreStdout, _setupStdout

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]

Inherited from unittest.result.TestResult (private): _moduleSetUpFailed, _previousTestClass, _testRunEntered

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

addSuccess(self, test)

source code 

Called when a test has completed successfully

Overrides: unittest.result.TestResult.addSuccess
(inherited documentation)