unittest.mock.Mock.call_args_list
  • References/Python/Python/Development Tools

call_args_list This is a list of all the calls made to the mock object in sequence (so the length of the list is the number

2025-01-10 15:47:30
unittest.mock.patch.stopall()
  • References/Python/Python/Development Tools

patch.stopall() Stop all active patches. Only stops patches started with start.

2025-01-10 15:47:30
unittest.mock.NonCallableMagicMock
  • References/Python/Python/Development Tools

class unittest.mock.NonCallableMagicMock(*args, **kw) A non-callable version of MagicMock. The

2025-01-10 15:47:30
doctest.DebugRunner
  • References/Python/Python/Development Tools

class doctest.DebugRunner(checker=None, verbose=None, optionflags=0) A subclass of DocTestRunner that raises an

2025-01-10 15:47:30
unittest.TestCase.run()
  • References/Python/Python/Development Tools

run(result=None) Run the test, collecting the result into the TestResult object passed as result. If result

2025-01-10 15:47:30
doctest.register_optionflag()
  • References/Python/Python/Development Tools

doctest.register_optionflag(name) Create a new option flag with a given name, and return the new flag’s integer value.

2025-01-10 15:47:30
typing.MutableSet
  • References/Python/Python/Development Tools

class typing.MutableSet(AbstractSet[T]) A generic version of

2025-01-10 15:47:30
unittest.TestSuite
  • References/Python/Python/Development Tools

class unittest.TestSuite(tests=()) This class represents an aggregation of individual tests cases and test suites. The class

2025-01-10 15:47:30
doctest.DocTestParser
  • References/Python/Python/Development Tools

class doctest.DocTestParser A processing class used to extract interactive examples from a string, and use them to create a

2025-01-10 15:47:30
unittest.FunctionTestCase
  • References/Python/Python/Development Tools

class unittest.FunctionTestCase(testFunc, setUp=None, tearDown=None, description=None) This class implements the portion of

2025-01-10 15:47:30