nUnit rowtest 扩展跳过我的测试
当我使用 NUnitExtension.RowTest.dll 时,它会忽略我在 Resharper/VS2008 和 Gallio Icarus 中的测试。有人有有效的配置吗?
[RowTest]
[Row(5, 6, 11)]
public void Should_Do_RowTest(int a, int b, int expected)
{
Assert.AreEqual(a+b, expected);
}
When I use the NUnitExtension.RowTest.dll it ignores my tests in Resharper/VS2008 and Gallio Icarus. Does anyone have a config that works?
[RowTest]
[Row(5, 6, 11)]
public void Should_Do_RowTest(int a, int b, int expected)
{
Assert.AreEqual(a+b, expected);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道比较笨重,但是怎么样?
这段代码不需要扩展 DLL。它将执行:
Clunkier I know, but how about?
You won't need the Extensions DLL with this code. It will perform: