unittest.TestResult.stopTest()

stopTest(test) Called after the test case test has been executed, regardless of the outcome.

2016-10-07 17:46:37
unittest.TestResult.errors

errors A list containing 2-tuples of TestCase instances and strings holding formatted tracebacks. Each tuple represents

2016-10-07 17:46:35
unittest.mock.Mock.called

called A boolean representing whether or not the mock object has been called:

2016-10-07 17:46:09
doctest.DocTest.globs

globs The namespace (aka globals) that the examples should be run in. This is a dictionary mapping names to values. Any changes

2016-10-07 17:32:07
unittest.TestCase.assertDictEqual()

assertDictEqual(first, second, msg=None) Test that two dictionaries are equal. If not, an error message is constructed that

2016-10-07 17:46:18
unittest.TestCase.assertTrue()

assertTrue(expr, msg=None) assertFalse(expr, msg=None) Test that expr is true (or false).

2016-10-07 17:46:24
doctest.OutputChecker

class doctest.OutputChecker A class used to check the whether the actual output from a doctest example matches the expected

2016-10-07 17:32:13
doctest.Example.exc_msg

exc_msg The exception message generated by the example, if the example is expected to generate an exception; or None

2016-10-07 17:32:12
unittest.TestCase.assertNotAlmostEqual()

assertNotAlmostEqual(first, second, places=7, msg=None, delta=None) Test that first and second are approximately

2016-10-07 17:46:22
test.support.captured_stdout()

test.support.captured_stdout() test.support.captured_stderr() A context managers that temporarily replaces the named

2016-10-07 17:44:22