I have traditionally used Eclipse / Java, but am currently using Visual Studio 2015 / C #, and therefore I hope that I have something incorrectly configured. I am developing the main ASP.NET application and have a number of unit tests (~ 20) that I created and run them with the xunit test runner.
When working with dotnet testperformance, this is what I would expect. Perhaps a second or two delays when the application is compiled and then tests are run immediately (all tests run less than a second after launch).
However, when starting through VS2015 using the test explorer window, there is a delay of up to 30 seconds before the start of the first test. After running the tests, they run at about the same speed (<1 second for all tests), but this 30 second delay is significant and really interrupts my flow. This delay occurs even if I select one test to run (so this is not a test discovery process for a test conductor).
Is there any way to configure VS2015 to avoid this delay?
source
share