-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Description
However an extension point that allows dynamic or parameterized tests turns out (see for example #14, #371, #395 ), it would be great if it allowed to structure tests hierarchically. If, for example, two test methods testA and testB were run three times each, the test tree should be able to look as follows:
testA
- run #1
- run #2
- run #3
testB
- run #1
- run #2
- run #3
Allowing extensions to create a plan like that gives them the ability to better structure the generated tests, giving better feedback to developers.
This does not mean that a particular implementation for that extension point (let's say Jupiter's support for parameterized tests) should organize tests like that but that other implementations have the ability to do so.
leo-from-spb and sormuras