5 | | UnitPy does not need the test class to extend unittest.TestCase, and the test class constructor does not need modifications (TestCase requires the name of the test function to be passed as additional argument). This enables to use the test class also as normal class. |
| 5 | UnitPy has a number of improvements over the standard method using Testcase: |
| 6 | * the test class does not need to extend unittest.TestCase |
| 7 | * the test class constructor does not need modifications (TestCase requires the name of the test function to be passed as additional argument). |
| 8 | * The test methods are not required to contain "test" |
| 9 | This enables to use the test class also as normal class. |