我有一个单元测试,它查看我的测试项目中包含的文本文件。我不得不采取这条路线,因为我似乎无法正确复制用户正在进入原始数据本身(其他系统)的 C# 字符串中的特殊字符。
单元测试在排列部分读取文件的内容,然后对内容进行操作以确保事情按计划进行。
在本地,测试运行良好——零问题。
我们运行 TFS2010 构建,我的构建每次都未能通过该测试,因为在构建服务器上运行测试时找不到文本文件本身。
我的文件目前位于测试项目本身名为“Assets”的目录中,文本文件的属性是:
- 构建操作:内容
- 复制到输出目录:始终复制
测试代码是
[TestMethod]
public void Broken_First_Token_Ok_Second_Returns_Full_String()
{
string rawText = string.Empty;
// load the broken translation
using (StreamReader reader = new StreamReader(@"Assets\BrokenTranslation.txt")){
rawText = reader.ReadToEnd();
}
string expected = rawText;
string actual = [Some code that should return the proper values]
Assert.AreEqual(expected, actual, "Failed to return proper match");
}
我错过了什么?