正如标题所说 - 我找不到将文件包含在 Windows 商店测试项目中的方法。(标准的 .NET 测试项目可以正常工作)
右键单击解决方案并执行:添加新项目 -> C# -> Windows Store -> 单元测试库(Windows 商店应用程序)
你会得到这个样板文件,我在其中添加了 DeploymentItem 属性:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.VisualStudio.TestPlatform.UnitTestFramework;
namespace UnitTestLibrary1
{
[TestClass]
public class UnitTest1
{
[TestMethod]
// this does not compile; DeploymentItem attribute not found
[DeploymentItem("wibble.txt")]
public void TestMethod1()
{
}
}
}
那么我错过了什么?是否根本不可能在 Windows 存储单元测试中包含数据,还是我需要不同的方法?