我正在尝试使用C#中的TFS Api在MTM中添加测试用例的附件。我没有得到任何异常抛出,但我仍然无法在TFS中看到上传的文件。我正在添加相关代码,我正在尝试添加附件供您参考。请帮帮我。
foreach (ITestCaseResult result in results)
{
result.Attachments.Add(result.CreateAttachment(@"ThePath"));
result.Outcome = TestOutcome.Failed;
result.State = TestResultState.Completed;
result.Save();
}
results.Save(true);
testRun.Save();
testRun.Refresh();