0 votes
in Python by
Pros and Cons of Unitestest in Python?

1 Answer

0 votes
by
Pros

Unlike unittest, you don't need to extend test cases from a parent class. You can also write test functions.

nose has more fixtures than unittest. It allows fixtures at package and function levels.

nose.tools has many features for automating test cases.

nose can recognize and run unittests tests.

Cons

nose is not under active development from several years.

Related questions

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