我一直在阅读许多描述我的问题的帖子,但我找不到解决方案。在我的测试项目中,我有一个名为“resources”的文件夹。
我在类级别添加了DeploymentItem注释。该文件永远不会成为测试“out”文件夹。
有人可以告诉我我错过了什么吗?
[TestClass]
[DeploymentItem(@"resources\descriptor.xml")]
public class MyTests
{
[TestInitialize]
public void TestSetup()
{
XDocument descriptor = XDocument.Load("descriptor.xml"); //The barfs
}
}
答案 0 :(得分:0)
看来resharper测试跑步者是个问题。如果我使用VS测试运行器运行我的测试一切都很好。