Closed Noksa closed 5 years ago
It should be possible to specify in the AllureStepAttribute not only the parameter name of the method, but also calling his members.
AllureStepAttribute
Example:
[AllureStep("Test &myClass.GetString()& &myClass.Int& &myClass._fieldName&")] private void Test(MegaClass myClass) { // code } public class MegaClass { private string GetString() { return "Mega"; } private double _fieldName = 4005; public int Int => 10; }
Released in 3.0.0
It should be possible to specify in the
AllureStepAttribute
not only the parameter name of the method, but also calling his members.Example: