I need a good tool for testing database modules

I tried to test SQL Server database stored procedures (write tests like unit) using the Visual Studio 2010 testing tool, but this is very inconvenient.
Is there another convenient tool for checking database stored procedures?

+6
source share
2 answers

Drop TSQLUnit for an open source application that uses SQL Server unit testing. And a few more test applications for SQL Server listed on this page.

+7
source

We use NUnit and have written our own library in C #. Works well for us, and here are some articles where we described the approach: Close these Loopholes - Play database errors

+1
source

Source: https://habr.com/ru/post/893987/


All Articles