Hello,
I'm busy working my way through a book which presents a bunch of test cases in Gherkin, so I've been using SpecFlow to implement them and then using Visual Studio's test runner to run them. Except VS's test runner still sucks and I wondered if NCrunch supported SpecFlow. Apparently it does, but I can't get it to to work - the only tests that are detected and executed are three "normal" MSTest tests I created.
I noticed that if I opened the Feature files, NCrunch is showing code coverage markers next to all the test steps, although it states that no tests are covered - yet there's currently 101 of them.
The test project is a .NET Core 2.1 project. The classes being tested are in a .NET Standard 2.0 project. NCrunch doesn't appear to be issuing any warnings or have any problems with the project - as I noted, it's quite happy running 3 old school tests in the same solution. Just in case it was getting confused and only processing one set of tests, I tried deleting the standard tests so only the SpecFlow ones remained, to no avail.
Can you offer any suggestions on how I get NCrunch to run the SpecFlow tests?
Regards;
Richard Moss
[I did search the docs, but not hits for "SpecFlow". Searched the forums, plenty of posts from which I gather it's supposed to "just work"]