如何运行Nunit的显式测试用例

时间:2009-08-17 14:30:24

标签: unit-testing nunit nunit-console

我的测试套件项目包含一些明确的测试用例,现在我想在Nunit-console.exe的帮助下执行测试用例。当我执行测试用例时,显式测试用例被排除在执行之外。因此,我尝试使用批处理文件以下列方式执行测试用例。

nunit-console.exe test1.dll
nunit-console.exe test1.dll /include:Expicit

我在批处理文件的帮助下执行上述2个命令。但是我无法执行显式测试用例。

您能否告诉我如何在nunit-console.exe

的帮助下执行明确的测试用例

3 个答案:

答案 0 :(得分:6)

如果您使用/ fixture选项在命令行上命名测试或测试夹具,则只能使用nunit-console运行

Explicit测试。

答案 1 :(得分:1)

你有一个错字:/ include:Exp“l”icit ......也许这就是原因?

答案 2 :(得分:1)

这对我有用:

首先,在When running NUnit and specifying a category, can all uncategorized tests be included too?中按照以下答案将[类别]添加到程序集中。

然后,在使用[Explicit]的地方,添加相同的[Category]。