-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
For now, we do support JUnit4 parametrized test methods that have a default name, i.e. test[{index}], where test is the name of the test method and index is the index of the parameter used.
However, one can specify a custom name for such test using the annotation value name such as:
"{index}: array = {0}; nothingis {1}"
where variables between curly brackets {...} are replaced by values. For instance, we can have:
0: array = 1; nothingis 2`
There are two issues:
- the current implementation of the filter won't recognize such names and
test-runnerwon't find any tests to be run. test-runneruses classic java command lines to run the test. Providing such names, that contain spacesand path separator;, would be for now impossible.