Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've tried to test SQL Server database stored procedures (write tests like unit) using Visual Studio 2010 testing tool but it is very inconvenient.
Is there any another more convenient tool for testing database stored procedures?

share|improve this question
I'm curious to know how you got on with SQL unit testing. Did you get it in place, and did it prove useful? – David Atkinson Oct 28 '11 at 17:12
I found TSQLUnit, proposed by Paul very simple and useful tool. This provides important functional for unit testing. My application has business, placed on database layer in form of stored procedures and unit testing is absolutely necessary. Try TSQLUnit, it is very simple to use. – Sergey Metlov Oct 29 '11 at 9:46
I'd be interested to get your views on the tsqlt.org framework, as this is a tool we're planning to support here at Red Gate. – David Atkinson Nov 25 '11 at 0:03

2 Answers

up vote 7 down vote accepted

Check out TSQLUnit for an open source, SQL Server unit testing app. And there are several more SQL Server-specific testing apps listed on this page.

share|improve this answer

We are using NUnit, and wrote our own library in C#. Works really well for us, and here are some articles where we have described the approach: Close these Loopholes - Reproduce Database Errors

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.