本文介绍了如何从控制台 exe 禁用 nunit 中的卷影复制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在加载 Nunit 测试 dll 时遇到问题.测试 dll 正在使用其他一些 exe,它们在构建时复制了一些目录和文件.

I am trouble with loading Nunit test dll. The test dll is using some other exe which copied few directory and files when they builds.

我在从 nunitconsole.exe 调用 test.dll 时收到该错误

I have recevied that error when call test.dll from nunitconsole.exe

System.IO.DirectoryNotFoundException: Could not find a part of the path

控制台参数如下:

C:\Program Files (x86)\NUnit 2.6.2\bin\nunit-console.exe" /xml:"C:\abc.xml" "D:\Project\UnitTestProjct\RGTestingToolTestProject\NUnitTestProject\bin\Debug\NUnitTestProject.dll"

请帮帮我

推荐答案

您可以通过在控制台参数中使用 /noshadow:false 来做到这一点.

You can do this by using /noshadow:false in your console parameters.

Nunit 参数的详细信息由 链接

这篇关于如何从控制台 exe 禁用 nunit 中的卷影复制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 00:06