我在下面使用将单个参数传递给我的测试。
C:\Documents and Settings\>"C:\Program Files\NUnit 2.6.2\bin\nunit-console" "D:\Automation\ClassLibrary2\bin\Debug\ClassLibrary2.dll /run:ClassLibrary2.Class1.Test1(\"option1\")
我的代码:
namespace ClassLibrary2
{
[TestFixture]
public class Class1
{
[Test]
public void Test1(string browser)
{
MessageBox.Show(Browse );
}
}
}
结果:测试运行:0,错误:0,失败:0,不确定:0,时间:0 秒
那么如何将参数直接从 nunit-console 传递给 Test。