Changes between Version 4 and Version 5 of unitpy


Ignore:
Timestamp:
09/30/24 15:36:30 (5 weeks ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • unitpy

    v4 v5  
    22
    33UnitPy 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
    45
    56UnitPy has a number of improvements over the standard method using Testcase:
     
    89* The test methods are not required to contain "test"
    910This 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.
    1014
    1115The @RunWith annotation is to be placed right before the class definition.