You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For plain @Tests a @BeforeEach can get informastion about the test that will be run by declaring a TestInfo parameter, and for @RepeatedTest it can declare a RepetitionInfo parameter to get interation count etc., but there appears to be no corresponding way to get any information about the parameters for a @ParameterizedTest.
Would it be possible to add some class, e.g. a ParametersInfo, from which it can get the actual arguments that will be passed to the @ParameterizedTest?
The text was updated successfully, but these errors were encountered:
For plain
@Test
s a@BeforeEach
can get informastion about the test that will be run by declaring aTestInfo
parameter, and for@RepeatedTest
it can declare aRepetitionInfo
parameter to get interation count etc., but there appears to be no corresponding way to get any information about the parameters for a@ParameterizedTest
.Would it be possible to add some class, e.g. a
ParametersInfo
, from which it can get the actual arguments that will be passed to the@ParameterizedTest
?The text was updated successfully, but these errors were encountered: