我目前正在使用一个名为Visual Studio Testing Extensions(http://vstestingextensions.codeplex.com/)的库,它允许我以下列方式编写断言:
var result = unitUnderTest.MyImportantMethod();
result.ShouldBePositive();
.ShouldBeGreaterThan(4)
.ShouldBeLessThan(5.55);
不幸的是,该库现在已经更新超过2年并且几乎没有使用(120次下载)。是否有一个更常用的库并且仍在开发中?
要说清楚,我想要以下功能:
此外,NUnit支持是必要的。