I am setting some properties as below when I launch the Junit Tests programmatically.
LauncherDiscoveryRequestBuilder
.request()
.selectors(selectMethod("com.example#testMethod()"))
.configurationParameter("My_Param","Hello")
.build()
Is there a way to access My_Param from the test method?