正如標題所說 - 我無法找到包含帶有Windows Store測試項目的文件的方式。 (A標準的.NET測試項目工作正常)MSTest - DeploymentItem屬性在Windows Store測試項目上不可用
右鍵單擊該解決方案,並執行:添加新的項目 - > C# - > Windows應用商店 - >單元測試庫(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 Store單元測試中是否包含數據是不可能的,還是我需要不同的方法?
一個windows store測試項目在WinRT下運行,它的沙箱很大,所以你不能只添加對標準.NET DLL的引用。我確實嘗試直接瀏覽到UnitTestFramework DLL來添加它,但它仍然不想識別該屬性。 – MarcE 2013-03-19 12:09:27