unittest.TestCase.tearDownClass()

tearDownClass()

A class method called after tests in an individual class have run. tearDownClass is called with the class as the only argument and must be decorated as a classmethod():

1
2
3
@classmethod
def tearDownClass(cls):
    ...

See Class and Module Fixtures for more details.

New in version 3.2.

doc_python
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.