如果“测试结果详细信息”(TRD)中的结果字符串很长,则Visual Studio 2008崩溃。我通过将结果数据发送到文件来解决这个问题。但是,有一个问题,因为没有一种简单的方法来打开这样的文件。当然,我可以手动打开文件夹然后再打开文件,但效率不高。现在,问题部分。
感谢您的帮助。
答案 0 :(得分:1)
[TestMethod]
public void MyTest()
{
...
testContextInstance.AddResultFile(targetFile);
}
private TestContext testContextInstance;
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext
{
get
{
return testContextInstance;
}
set
{
testContextInstance = value;
}
}