How do I do continuous testing in .NET?

前端 未结 4 620
-上瘾入骨i
-上瘾入骨i 2021-02-14 07:56

I\'m using Infinitest for continuous testing when I do java development and i really miss the instant feedback when I develop in .nET

How do I do continuous testing in C

4条回答
  •  北海茫月
    2021-02-14 08:14

    I discovered another extension for VisualStudio that is really helpful: NCrunch http://www.ncrunch.net/ What I really like about it is that it runs the tests of your code in the background while you are typing (no saving/build required), it runs only tests that are influenced by changed code and it automatically shows which lines in your code are covered by passing tests/by failing tests and which lines are not covered. And it supports NUnit, MS Test, Xunit, MbUnit, MSpec :)

提交回复
热议问题