我正在尝试在我的Windows Phone 8应用程序中实现单元测试,但测试运行器不会识别测试。 我正在学习本教程。
Unit Testing In Windows Phone 8 The Basics
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);
}
}
}
答案 0 :(得分:0)
我很确定你的测试类需要公开,而不是interal(它将是默认的),即:
public class SampleTest