unittest.TestCase.assertCountEqual()
  • References/Python/Python/Development Tools

assertCountEqual(first, second, msg=None) Test that sequence first contains the same elements as second, regardless

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

class typing.Callable Callable type; Callable[[int], str] is a function of (int) -> str. The

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

class doctest.DocTestFinder(verbose=False, parser=DocTestParser(), recurse=True, exclude_empty=True) A processing class used

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

call.call_list() For a call object that represents multiple calls, call_list() returns a list of all the intermediate

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

shortDescription() Returns a description of the test, or None if no description has been provided. The default

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

run(test, compileflags=None, out=None, clear_globs=True) Run the examples in test (a DocTest object),

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

wasSuccessful() Return True if all tests run so far have passed, otherwise returns False.

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

getTestCaseNames(testCaseClass) Return a sorted sequence of method names found within testCaseClass; this should be

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

class typing.Set(set, MutableSet[T]) A generic version of

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

unittest.mock.call(*args, **kwargs) call() is a helper object for making simpler assertions, for comparing with

2025-01-10 15:47:30