Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (55.6k points)

Can anyone explain the Unit Testing in Python?

1 Answer

0 votes
by (119k points)
edited by

In Python, Unit Testing is the first level of software testing. Unit Testing allows us to test the smallest testable parts of the software. Unit Testing is used to validate each and every unit of the software performs as designed. The method used for Unit testing is White-box testing

It supports:

  • Test automation
  • Sharing of setup and shutdown code for tests
  • Aggregation of tests into collections
  • Independence of the tests from the reporting framework.

If you are interested to learn Testing, then check out this Test Architect Training program by Intellipaat.

Also, watch this video on PyTest Testing framework:

Related questions

0 votes
1 answer
asked Jun 26, 2020 in Python by Sudhir_1997 (55.6k points)
0 votes
1 answer

Browse Categories

...