我已经使用nuget将Windows Phone Toolkit测试框架安装到空的wp8应用程序中。我的主页现在看起来
public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
this.Content = UnitTestSystem.CreateTestPage();
}
}
[TestClass]
class ImageTests : WorkItemTest
{
[TestMethod]
[Description("foo")]
public void dummyTest()
{
Assert.IsFalse(false);
}
}
中所述
问题是,一旦我在模拟器中启动项目并点击播放按钮,应用程序就会显示Running Tests...
并且似乎挂起。任何想法如何让我的测试实际执行?即使我完全删除了测试类,也会发生这种情况。
答案 0 :(得分:0)
在测试类中使用Microsoft.VisualStudio.TestTools.UnitTesting,而不是Microsoft.VisualStudio.TestPlatform.UnitTestFramework命名空间。