Hello,
most frameworks are using reflection mechanism to automatically detect a variable by its name (for example Spring's @PathVariable), and in order to make it work we have to compile the tests using the -parameters flag, otherwise the parameter's information will be skipped at compilation time and the tests will fail.
This simple PR adds the -parameters flag to the compilation phase.
Hello, most frameworks are using reflection mechanism to automatically detect a variable by its name (for example Spring's
@PathVariable
), and in order to make it work we have to compile the tests using the-parameters
flag, otherwise the parameter's information will be skipped at compilation time and the tests will fail.This simple PR adds the
-parameters
flag to the compilation phase.