call.call_list() For a call object that represents multiple calls, call_list() returns a list of all the intermediate
id() Return a string identifying the specific test case. This is usually the full name of the test method, including the module
class unittest.TestCase(methodName='runTest') Instances of the TestCase class represent the logical test units
class unittest.TextTestRunner(stream=None, descriptions=True, verbosity=1, failfast=False, buffer=False, resultclass=None, warnings=None, *, tb_locals=False)
expectedFailures A list containing 2-tuples of TestCase instances and strings holding formatted tracebacks. Each
doctest.testmod(m=None, name=None, globs=None, verbose=None, report=True, optionflags=0, extraglobs=None, raise_on_error=False, exclude_empty=False)
class typing.ValuesView(MappingView[VT_co]) A generic version of
assertMultiLineEqual(first, second, msg=None) Test that the multiline string first is equal to the string second
assertIn(first, second, msg=None) assertNotIn(first, second, msg=None) Test that first is (or is not) in
globs The namespace (aka globals) that the examples should be run in. This is a dictionary mapping names to values. Any changes
Page 18 of 28