Andreas Willich

Results 337 comments of Andreas Willich

@gasparnagy your two cents to this? I am fine with this.

It would help us, if you could try out the minor versions since 3.0 and 3.8 to find where we added this bug.

On which object do you call the dispose method?

You learn every day something new. I am using xUnit for years, but I never heard until now about the `BeforeAfterTestAttribute`. I have to look into it, what it is...

Ok, found the issue. The `[UsesVerify]` attribute has to be on the generated test classes and not on the binding classes. Should be not that hard to create a generator...

Ok, Discord Link was broken. This is the right one: https://discord.com/invite/xQMrjDXx7a I started yesterday to quickly create a plugin for this. I hope I can finish it today or tomorrow.

Draft PR is here: https://github.com/SpecFlowOSS/SpecFlow/pull/2602

So, Verify support is available. Needed NuGet package: https://www.nuget.org/packages/SpecFlow.Verify/4.0.16-beta Example: https://github.com/SpecFlowOSS/SpecFlow-Examples/tree/master/Verify/VerifyExample

As the step argument transformation is limited to numbers, I changed the parameter type to int and it is working: ``` csharp [StepArgumentTransformation(@"(\d+)")] public string Transform(int val) { Console.WriteLine($"Transform: {val}");...