Home
last modified time | relevance | path

Searched refs:addClassCleanup (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/unittest/test/
Dtest_runner.py186 TestableTest.addClassCleanup(class_cleanup1, 1, 2, 3,
188 TestableTest.addClassCleanup(class_cleanup2)
207 cls.addClassCleanup(cleanup, ordering)
233 cls.addClassCleanup(cleanup, ordering)
260 cls.addClassCleanup(cleanup, ordering, blowUp=blowUp)
289 cls.addClassCleanup(cleanup, ordering, blowUp=blowUp)
325 TestableTest.addClassCleanup(cleanup1)
326 TestableTest.addClassCleanup(cleanup2)
337 cls.addClassCleanup(cleanup, ordering)
360 cls.addClassCleanup(cleanup, ordering, blowUp=True)
[all …]
Dtest_result.py872 cls.addClassCleanup(bad_cleanup1)
873 cls.addClassCleanup(bad_cleanup2)
905 cls.addClassCleanup(bad_cleanup1)
906 cls.addClassCleanup(bad_cleanup2)
944 cls.addClassCleanup(bad_cleanup1)
945 cls.addClassCleanup(bad_cleanup2)
/third_party/python/Misc/NEWS.d/
D3.10.0rc2.rst226 * Functions registered with :meth:`~unittest.TestCase.addClassCleanup` were not called if ``tearDow…
227 …`~unittest.TestResult` did not work with functions registered with ``addClassCleanup()`` and ``add…
228 * Errors in functions registered with ``addClassCleanup()`` and ``addModuleCleanup()`` were not han…
D3.8.0a1.rst3215 :meth:`~unittest.TestCase.addClassCleanup()` to unittest to support cleanups
/third_party/python/Lib/idlelib/idle_test/
Dtest_run.py400 cls.addClassCleanup(setattr,run,'print_exception',run.print_exception)
/third_party/python/Lib/unittest/
Dcase.py413 def addClassCleanup(cls, function, /, *args, **kwargs): member in TestCase
/third_party/python/Doc/library/
Dunittest.rst1485 .. classmethod:: addClassCleanup(function, /, *args, **kwargs)
1491 :meth:`addClassCleanup` when they are added.
1505 :meth:`addClassCleanup`. If you need cleanup functions to be called
/third_party/python/Doc/whatsnew/
D3.8.rst1366 :meth:`~unittest.TestCase.addClassCleanup()` to unittest to support