Built tests are not added to the Visual Studio Test Explorer window

Vlad Kostyukevich picture Vlad Kostyukevich · Jun 1, 2015 · Viewed 28k times · Source
  1. I set up the SpecFlow plug-in for the Visual Studio 2013.
  2. I created new Feature Item and build it.

Result: built test is not shown in the Test Explorer. Why?

I do it according to this video

Answer

Sam Holder picture Sam Holder · Jun 1, 2015

in order to configure it to generate MSTest tests you need to add this to your app.config:

<specFlow>    
  <unitTestProvider name="MSTest"></unitTestProvider>
</specFlow>