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.
Please login to continue.