-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running Feature files without compilation #132
Comments
I don't understand your request. Please help me understand. Let's go step by step.
This is unclear. You cannot create a class using Gherkin. Gherkin can only describe a feature and scenarios in that feature.
Do you mean you want to write feature (.cs) classes without writing the Gherkin (.feature) files? I don't see why you cannot do this, so I guess you are asking something else.
This is not an accurate statement. You need to recompile the Visual Studio project only because during the build, the changed Gherkin feature file is copied into the output directory. So, I am confused with this request, but I want to explain something, and maybe that helps.
This way, you can write feature files later. Is that what you asked? |
Hi, I have written a feature implementation class with very generalized steps. Such as Now, I want business architects without programming skills to utilize the different step definitions of the feature implementation class and write their own tests in Gherkin Ideally, I would like to distribute a feature implementation class as a program, perhaps named something like The result of this would ideally be visually like the result of I hope this provided a better understanding of what I'm trying to accomplish. |
There is, that is
I see two options:
I hope this helps. |
If the above comment addressed your concerns, please respond and close this issue. Otherwise, please explain. |
Hi,
I have a use case where I would like to create a step definition class using Gherkin, then compiling and distributing it.
Then users of the program should be able to create their own
.feature
files and run the compiled distributed program in the terminal with their newly created feature files as input parameters.Right now the feature files are tied up to test classes, therefore creating the need to compile every time a feature file is modified or created.
I'm looking for guidance in whether or not this is feasible to create with this library.
The text was updated successfully, but these errors were encountered: