doctest.testfile()

doctest.testfile(filename, module_relative=True, name=None, package=None, globs=None, verbose=None, report=True, optionflags=0, extraglobs=None, raise_on_error=False

2016-10-07 17:32:14
unittest.TestSuite.countTestCases()

countTestCases() Return the number of tests represented by this test object, including all individual tests and sub-suites.

2016-10-07 17:46:39
unittest.TestResult.startTestRun()

startTestRun() Called once before any tests are executed.

2016-10-07 17:46:37
test.support.EnvironmentVarGuard.unset()

EnvironmentVarGuard.unset(envvar) Temporarily unset the environment variable envvar.

2016-10-07 17:44:23
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
unittest.SkipTest

exception unittest.SkipTest(reason) This exception is raised to skip a test. Usually you can

2016-10-07 17:46:16
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.skipUnless()

@unittest.skipUnless(condition, reason) Skip the decorated test unless condition is true.

2016-10-07 17:46:16
unittest.TestCase.assertRaises()

assertRaises(exception, callable, *args, **kwds) assertRaises(exception, msg=None) Test that an exception is raised

2016-10-07 17:46:23
unittest.TestCase.fail()

fail(msg=None) Signals a test failure unconditionally, with msg or None for the error message.

2016-10-07 17:46:26