VB.Net:运行 MSTest 时如何获取程序集的源路径?
我正在尝试从 NUnit 切换到 MSTest(用于代码覆盖率选项)。 我们将应用程序的一些配置存储在文件中(应用程序通过使用相对路径找到它们,从 .dll 所在的“bin”文件夹开始)。 NUnit 在这种配置下工作得很好。 MSTest 将 .dll 复制到测试文件夹 (TestResults/name/OUT) 中。有没有办法使用 MSTest 并将其设置为不会复制 .dll(从“bin”文件夹中执行它们)?我一直在寻找这个选项,但似乎是不可能的。 另一个问题(如果复制选项不可配置)如何找到起始 .dll 路径(MSTest 在 OUT 文件夹中复制的文件的原始文件路径)?
谢谢
I'm trying to switch from NUnit to MSTest (for the Code Coverage option).
We have some of the configuration for the application stored in files (the application finds them by using a relative path, starting from the "bin" folder, where the .dlls are). NUnit worked fine with this configuration.
MSTest copies the .dlls in a test folder (TestResults/name/OUT). Is there any way to use MSTest and set it up so it won't copy the .dlls (execute them from the "bin" folder)? I've been searching for this option and it seems to be impossible.
Another question (if the copy option is not configurable) how can I find out the starting .dll path (the original file path for the file that gets copied by MSTest in the OUT folder)?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 System.Reflection.Assembly 类中的方法之一:
在这些方法之间,您应该能够获得所需的所有内容。
You can use one of the methods in the System.Reflection.Assembly class:
Between those you should be able to get all you need.
您还可以使用 TestContext。请参阅 http://msdn.microsoft.com/en-us/library/ms404699。 .aspx.
You can also use TestContext. See http://msdn.microsoft.com/en-us/library/ms404699.aspx.