About Lesson
@parameterized Decorator
To parameterize your PyUnit tests, you can use the @parameterized decorator from the parameterized library in Python. This will parameterize your PyUnit tests.
Install parameterized module
Open the Windows command prompt. Issue the following pip install command:
/> pip install parameterized
This will install the parameterized module.
Once installed, you can import the module into your tests using the following statement:
from parameterized import parameterized
@parameterized tests won’t work inside subclasses of TestCase. You can use @parameterized.expand instead.