运行 xUnit.net 的 Visual Studio for MSBuild 中的错误报告
我即将按照此处所述设置 MSBuild 来运行 xUnit.net 。
这是有效的。但是,当 xUnit 报告错误时,实际错误和发生错误的行/文件在 Visual Studio“错误列表”窗口中分为两个不同的错误消息。
文件、行和列显示我的项目文件的值,而不是我的单元测试的源文件。双击错误以获取失败的测试不起作用。
这是一个已知问题吗?我找不到任何这方面的信息。我的问题的解决方案将不胜感激。
I am about to set up MSBuild to run xUnit.net as described here.
This is working. But when xUnit reports an error, the actual error and the line/file in which the error occurs are seperated into two different error messages in the Visual Studio "Error List"-window.
The file, line and column show the values of my project file instead of the source file of my unit test. Double clicking on the error to get to the failed test is not working.
Is this a known problem? I couldn't find any information on this. A solution for my problem would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经对 xUnit 项目做了一个小分叉,它可以满足您的需求。使用
xunit
MSBuild 任务。I've made a minor fork to the xUnit project that does what you want. Use the
xunit
MSBuild task.