unittest.TestResult.startTestRun()

startTestRun() Called once before any tests are executed.

2016-10-07 17:46:37
typing.AnyStr

class typing.AnyStr AnyStr is a type variable defined as AnyStr = TypeVar('AnyStr', str, bytes).

2016-10-07 17:45:54
doctest.DocTest.name

name A string name identifying the DocTest. Typically, this is the name of the object or file that the test was

2016-10-07 17:32:07
unittest.mock.patch.multiple()

patch.multiple(target, spec=None, create=False, spec_set=None, autospec=None, new_callable=None, **kwargs) Perform multiple

2016-10-07 17:46:13
typing.Generator

class typing.Generator(Iterator[T_co], Generic[T_co, T_contra, V_co]) A generator can be annotated by the generic type

2016-10-07 17:45:55
unittest.TestSuite.debug()

debug() Run the tests associated with this suite without collecting the result. This allows exceptions raised by the test to

2016-10-07 17:46:40
typing.Reversible

class typing.Reversible An ABC with one abstract method __reversed__ returning an Iterator[T_co].

2016-10-07 17:45:58
doctest.DocTestRunner.summarize()

summarize(verbose=None) Print a summary of all the test cases that have been run by this DocTestRunner, and return a

2016-10-07 17:32:11
doctest.Example.source

source A string containing the example’s source code. This source code consists of a single Python statement, and always ends

2016-10-07 17:32:12
doctest.DocTest.examples

examples A list of Example objects encoding the individual interactive Python examples that should be run by this

2016-10-07 17:32:06