Andre Steenveld

Results 35 comments of Andre Steenveld

I've run in to this issue as well and started looking in to it. [Test case](https://github.com/AndreSteenveld/Xunit.Gherkin.Quick/commit/a03abbd3e1816609098b7dd92c26292b70b85761) After debugging for a bit I found a few things; When setting a breakpoint...

After debugging some more I found the following snippet: ```C# // StepMethodInfo in /source/Xunit.Gherkin.Quick/CoreModel/StepMethod/StepMethodInfo.cs public ScenarioStepPattern GetMatchingPattern(Step gherkinScenarioStep) { var gherkinStepText = gherkinScenarioStep.Text.Trim(); foreach (var pattern in ScenarioStepPatterns) { if...

So after a little digging it seems the most reasonable thing to do is to start with updating the version of Gherkin used. A more recent version of version of...

I just found that out... 😅. But moving `Xunit.Gherkin.Quick` to `.netstandard2.0` and updating to `Gherkin` v23.0.1 only gives me 11 errors initially. (missing classes, missing overloads, etc) So that seems...

Ah, I think I found the commit with the relevant changes! [the commit](https://github.com/cucumber/gherkin-dotnet/commit/879c1eccf39626085af967f5f4a12759301c2ca9). It seems to rename `ScenarioOutline` to `StepsContainer` and also adds the examples. Anyways that is enough for...

I just did some brute force renaming to get the project to compile again and run the unit tests. And I have to say, the results are not half bad....

After fixing the background unit test I'm left with 5 integration tests which don't work: `Stel Als Dan :: Valideer de volgorde van de stappen` still fails but that is...

After giving this a little rest I continued today, I had a hunch that maybe XUnit was just confused on what tests to run so cleaning the entire thing and...

HA! Checking out `ttutisani/Xunit.Gherkin.Quick` and just running that yields less tests (225 vs 230) and accounting that my fork contains one extra test (dutch) that leaves four more tests unaccounted...

Yay, I fixed the scenario outline issue. It isn't super elegant but for now this does the job well. ([commit](https://github.com/AndreSteenveld/Xunit.Gherkin.Quick/commit/f2bc9ea84d7b73f2df350a414cd18082e6c1ef43)) The only two things left now are handling the not...