Has anyone had any success in unit testing SQL stored procedures?

前端 未结 16 886
孤街浪徒
孤街浪徒 2020-12-12 17:38

We’ve found that the unit tests we’ve written for our C#/C++ code have really paid off. But we still have thousands of lines of business logic in stored procedures, which o

16条回答
  •  遥遥无期
    2020-12-12 17:53

    We use DataFresh to rollback changes between each test, then testing sprocs is relatively easy.

    What is still lacking is code coverage tools.

提交回复
热议问题