Reputation: 2909
I am looking to implement Unit Testing of a database project I have created following this tutorial
I have Visual Studio 2012 Ultimate Installed, and the latest update for SSDT, but I do not have the SQL Server Test Project Template available in Visual Studio. If I go to Templates, than Visual C#, the SQL Server folder only contains SQL Server Database Project. What do I need to do to configure the SQL Server Test Project?
Upvotes: 0
Views: 1828
Reputation: 3517
Database unit tests in VS2012 and VS2013 just use the standard unit test project, like so:
It's also possible to right-click on a stored procedure, etc. in SQL Server Object Explorer and choose Create Unit Test.
Upvotes: 3