执行 NUnit 测试时出现 Powershell 错误

发布于 2024-08-18 07:34:45 字数 718 浏览 2 评论 0原文

这可能听起来很愚蠢,但我一直在尝试使用 powershell 脚本执行 NUnit 测试,进行了多次尝试,但没有希望。有不同的格式还是我需要添加插件?

任何帮助都会得到帮助...

Command = "c:\Program Files\NUnit 2.4.8\bin\nunit-console.exe" /config=Release "C:\projects\IntegrationTests\IntegrationTests.nunit" 2>&1

输出如下:

PS C:\测试> “c:\Program Files\NUnit2.4.8\bin\nunit-console.exe”/config=Release

“C:\projects\IntegrationTests\IntegrationTests.nunit”2>&1

您必须在“/”运算符的右侧提供值表达式。

在第 1 行:55 + "c:\Program Files\NUnit 2.4.8\bin\nunit-console.exe" / <<<<

config=发布“C:\projects\IntegrationTests\IntegrationTests.nunit”2>&1

提前致谢

This might sound silly but I have been trying to execute a NUnit test using powershell script, had several attempts but no hope. is there different format or do I need to add a plugin?

Any help would be appriciated...

Command = "c:\Program Files\NUnit 2.4.8\bin\nunit-console.exe" /config=Release "C:\projects\IntegrationTests\IntegrationTests.nunit" 2>&1

Output as below:

PS C:\tests> "c:\Program Files\NUnit2.4.8\bin\nunit-console.exe" /config=Release

"C:\projects\IntegrationTests\IntegrationTests.nunit" 2>&1

You must provide a value expression on the right-hand side of the '/' operator.

At line:1 char:55 + "c:\Program Files\NUnit 2.4.8\bin\nunit-console.exe" / <<<<

config=Release "C:\projects\IntegrationTests\IntegrationTests.nunit" 2>&1

Thanks in Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一桥轻雨一伞开 2024-08-25 07:34:45

您没有将该部分放入

/config=Release

引用的命令文本中。

您的命令可能看起来像

"c:\Program Files\NUnit 2.4.8\bin\nunit-console.exe /config=Release C:\projects\IntegrationTests\IntegrationTests.nunit" 2>&1

...我没有检查 nunit-console.exe 命令行选项,但我想您已经测试过 nunit 命令是否有效。

You didn't put the part

/config=Release

inside your quoted command text.

Your command should probably look like

"c:\Program Files\NUnit 2.4.8\bin\nunit-console.exe /config=Release C:\projects\IntegrationTests\IntegrationTests.nunit" 2>&1

... i didn't check nunit-console.exe command line options, but i suppose you already tested if the nunit command works.

话少心凉 2024-08-25 07:34:45

抱歉顶部对话框混乱,下面是正确的代码版本

& 'c:\Program Files\NUnit 2.4.\bin\nunitconsole.exe' /config=Release C:\Projects\IntegrationTests\IntegrationTests.nunit 2>&1

Sorry for the mess in the top dialog, proper code version below

& 'c:\Program Files\NUnit 2.4.\bin\nunitconsole.exe' /config=Release C:\Projects\IntegrationTests\IntegrationTests.nunit 2>&1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文