A test suite is a composite test consisting of a number of
TestCases.
For use, create an instance of TestSuite, then add test case
instances. When all tests have been added, the suite can be passed to a
test runner, such as TextTestRunner. It will run the individual test
cases in the order in which they were added, aggregating the results.
When subclassing, do not forget to call the base class constructor.
|
__init__(self,
tests=( ) )
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
debug(self)
Run the tests without collecting errors in a TestResult |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|