.NET testing framework advice

后端 未结 10 1541
無奈伤痛
無奈伤痛 2020-12-29 01:22

I\'m looking to introduce a unit testing framework into the mix at my job. We\'re using Visual Studio 2005 (though we may be moving to 2008 within the next six months) and

10条回答
  •  醉梦人生
    2020-12-29 01:43

    I think NUnit is your best bet. With TestDriven.NET, you get great integration within Visual Studio. (ReSharper also has a unit test runner if you're using it). NUnit is simple to use and follows an established paradigm. You'll also find plenty of projects, tutorials, and guides using it which always helps.

    Your other main choice is probably MbUnit, which is more and more positioning itself as the BDD framework of choice (in conjunction with Gallio).

提交回复
热议问题