搜索 nunit 单元测试的文件依赖项

发布于 2024-07-07 04:19:50 字数 304 浏览 8 评论 0原文

我有一个 winforms C# 类,它在内部查找文件。为了帮助单元测试,我将其更改为从外部传递文件,例如:

string file = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location + " TestXML.xml");

Foo = new Foo(文件);

问题是代码正常工作正常,但在 Nunit 中运行时会出现错误,提示“无法找到目录 C:\doc & settings\ . . .. testxml.xml

有什么想法吗?

I had a winforms C# class that internally was looking up a file.. to help unit test, i changed it to pass in a file from the outside such as:

string file = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location + "TestXML.xml");

Foo = new Foo(file);

the problem is that the code works fine normally but when run in Nunit it comes us with an error saying "Cant find directory C:\doc & settings\ . . .. testxml.xml

any thoughts?

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

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

发布评论

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

评论(1

骷髅 2024-07-14 04:19:50

我会设置一个断点,然后使用立即窗口来找出传递给 GetDirectoryName 的内容。 这可能不是你想要的。

I would set a breakpoint and then use the immediate window to find out what is getting passed to GetDirectoryName. It probably isn't what you intended.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文