Changes between Version 7 and Version 8 of unitpy
- Timestamp:
- 09/30/24 15:39:54 (5 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
unitpy
v7 v8 32 32 33 33 == Parameterized 34 The class must contain a static method annotated with @Parameters.34 The class must contain a static method annotated with {{{@Parameters}}}. 35 35 This annotation indicates that the method takes no parameters 36 36 and that it returns list of lists. Every inner list 37 37 is to be used to call the constructor, so the number 38 of arguments must match the __init__function parameters.38 of arguments must match the {{{__init__}}} function parameters. 39 39 40 40 For every method M inside the class that is annotated with @Test, the following now happens: