Is there an option to auto create a unit test project whenever I create a class library in Visual Studio 2013?
I know it's trivial to do so manually but I have just created a new solution with 7 distinct projects and the only one that does this automatically is an ASP.Net MVC project. So there goes another couple of minutes of life creating the unit test proj for the class libraries and adding references to the class library under test.
Also it would be great if I could set up a convention so that the unit test is created in another directory rather than the same directory as my class library source as I use:
main > source > source
for code and
main > test > source
for test re: revision control directory structure.