Windows Phone 8アプリケーションで単体テストを実装しようとしていますが、テストランナーがテストを認識しません。私はこのチュートリアルに従っています。
using Microsoft.Phone.Testing;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace PPS.Tests
{
[TestClass]
class SampleTest
{
[Tag("SimpleTests")]
[TestMethod]
public void SimpleTest()
{
int a = 1;
int b = 2;
int c = a + b;
Assert.IsTrue(c == 4);
}
}
}