0 votes
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.

Related questions

0 votes
asked Jul 2, 2020 in Python by GeorgeBell
0 votes
asked Jul 2, 2020 in Python by GeorgeBell
...