如何仅在给定类别中运行测试,可以通过测试资源管理器在本地运行,也可以在构建中运行?

时间:2013-10-09 16:06:00

标签: nunit

如果您有以下内容:

[TestFixture]
public class SuccessTests
{
    [Test]
    [Category("Long")]
    public void VeryLongTest()
    { /* ... */ }
}

你怎么能从VS Test Explorer中或作为构建配置的一部分运行那些标记为属于“Long”类别的测试?

1 个答案:

答案 0 :(得分:2)

在您的构建中,您可以运行nunit console runner:

nunit-console.exe TestAssembly.dll /include:Long

更多信息:http://www.nunit.org/index.php?p=consoleCommandLine&r=2.2