I have a BDDfytest
.....
This.Given(_=> SomeInput(1))
.And(_=> AnotherInput(5))
.Bddfy():;
.....
which generates standard output text like this
Scenario: do something useful
Given some input MyTests.MySampleTests, 1
And another input MyTests.MySampleTests, 5
I want it to not include the full class name "MyTests.MySampleTests" but keep the parameters. I can use the "includeInputsInStepTitle" parameter which removes the full name but also the parameter values, which I want to keep.
Any Ideas ?