in Python by
What all Test Fixtures used in NOSE Python?

1 Answer

0 votes
by
nose also uses the same test fixtures, used in unittest at a module, class , and test method level.

setUpModule and tearDownModule are used at Module level.

setUpClass and tearDownClass are used at class level.

setUp and tearDown are used at test method level.
...