我可以指定要在nunit-console中运行的dll的路径吗?如果可以,怎么做?
我通常所做的就是在命令提示符下输入nunit-console testassembly1.dll y1.dll,测试程序集1.dll位于与nunit-console.exe相同的路径中,但是我可以在不同的路径.if中运行dll吗?
发布于 2009-05-26 10:45:36
您可以简单地将路径添加到命令行:
nunit-console.exe c:\path\testassembly1.dll如果路径包含空格,请用引号将路径和文件名括起来:
nunit-console.exe "c:\path with spaces\testassembly1.dll"https://stackoverflow.com/questions/882428
复制相似问题