Using SpecFlow in Jetbrains Rider

Is there a way to use SpecFlow in Jetbrains Rider? I have searched about this, but I could not find any information on this.

+3


source to share


1 answer


SpecFlow has two parts. Visual Studio extension and NuGet packages.
Visual Studio Extension includes intellisense, syntax highlighting, and item templates. The NuGet package contains the runtime and generators for the code behind the files.

File-based code generation can be triggered by a Visual Studio extension (default behavior) or at build time ( http://specflow.org/documentation/Generate-Tests-from-MsBuild/ ). There are generated coded tests which are then discovered by the unit test runner.



So, if you are using MSBuild integration and working without intellisense and syntax highlighting, you should already be working with SpecFlow in Jetbrains Rider.

+1


source







All Articles