Changes between Version 4 and Version 5 of unitpy
- Timestamp:
- 09/30/24 15:36:30 (5 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
unitpy
v4 v5 2 2 3 3 UnitPy is a toolbox with python annotations similar to the java unit test annotations, using {{{@Test}}} {{{@Before}}} {{{@After}}} {{{@RunWith}}} etc. UnitPy also provides a tool to discover and run tests. 4 4 5 5 6 UnitPy has a number of improvements over the standard method using Testcase: … … 8 9 * The test methods are not required to contain "test" 9 10 This enables to use the test class also as normal class. 11 * Every method annotated with @Test is a test 12 * The method annotated with @Before is run before every test. 13 * The method annotated with @After is run after every test. 10 14 11 15 The @RunWith annotation is to be placed right before the class definition.