我正在为 Windows Phone 8 应用程序使用 WPToolkitTestFx 单元测试框架。我在执行时遇到错误Assert.Fail()
或Assert.IsFalse(true)
.
Microsoft.VisualStudio.QualityTools.UnitTesting.Phone.DLL 中出现了“Microsoft.VisualStudio.TestTools.UnitTesting.AssertFailedException”类型的第一次机会异常
上述错误的任何解决方案。
这里是源代码
[TestMethod]
[Asynchronous]
[Description("Test2: Sample asynchronous test")]
public void Test2()
{
// this test executes asynchronously
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
// ... and then fails
Assert.IsFalse(true);
EnqueueTestComplete();
});
}
谢谢, 拉古