Closed
Description
I've a parameterized test that receives a parameter of type kotlin.reflect.KFunction. For each execution of this test, I'd like to show the simple name of the KFunction
, not the FQN that currently shoots out of the screen. I've seen the discussion in #2301 and #2375, but not clear how the Named
solution proposed there would help my case. If I could get hold of the actual argument passed to the test method, then I could get the simple name out very easily. I think this problem holds for a Java Method
too, so Kotlin or KFunction
isn't the use issue.