0 votes
in Python by
Introduction to unittest

1 Answer

0 votes
by
Unittest is another Python's built-in testing module.

Unittest is Python's xUnit-style unit testing framework.

It's functionality is similar to XUnit-style libraries in other programming languages such as JUnit in Java, CPPUnit in C++, PHPUnit in PHP, etc.

All the xUnit-style testing frameworks are derived from Smalltalk's unit testing framework SUnit.

Related questions

0 votes
asked Dec 31, 2020 in Python by SakshiSharma
+1 vote
asked Jul 16, 2020 in Python by GeorgeBell
...