Write unit tests for SQL Server databases in SQL Server Management Studio
Write your tests in
regular T-SQL
SQL Test uses the open-source tSQLt framework, a set of T-SQL tables, views, stored procedures, and functions.
SQL unit testing runs through simple queries which use the framework to check the values of your data types and to mock database objects.
Tests won’t change your database
SQL Test stores its objects in a separate schema, so they won’t get in your way. The tests run in transactions, which rolls back any changes. You won’t need any clean-up code.
There are no reviews yet.