Unit Test Methods
You’ll learn about the unit test methods available in Python in this lesson.
We'll cover the following...
Introduction to unit test methods
The following are some of the methods available in unittest
, most of which are self-explanatory.
-
assertEqual(a, b)
-
assertNotEqual(a, b)
...