Windows Phone 8单元测试停留在“运行测试”

时间:2013-03-05 14:07:08

标签: unit-testing windows-phone-8 silverlight-toolkit

我正在尝试在我的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);
    }
}
}

enter image description here

1 个答案:

答案 0 :(得分:0)

我很确定你的测试类需要公开,而不是interal(它将是默认的),即:

public class SampleTest