We are creating a gherkin runner written in C++. With custom fixtures (per step) support, with a google test inspired style.
It looks like:
PREFIX_STEP("Given a step without a fixture"){ /* ... body ... */ }
PREFIX_STEP_F(CustomFixture, "Given a CustomFixture"){ /* ... body ... */ }
PREFIX_STEP_F(CustomFixture, R"(Then we can also use literal strings )"){ /* ... body ... */ }
The step definition string is used directly as a regular expression to match against steps from a feature file. This works great. However, I am unable to create a cucumberautocomplete.gherkinDefinitionPart setting that is able to parse this line.
We are creating a gherkin runner written in C++. With custom fixtures (per step) support, with a google test inspired style.
It looks like:
The step definition string is used directly as a regular expression to match against steps from a feature file. This works great. However, I am unable to create a
cucumberautocomplete.gherkinDefinitionPart
setting that is able to parse this line.Any help is appreciated :-)