如何消除Silverlight单元测试框架的5秒延迟

发布于 2024-12-06 22:34:13 字数 117 浏览 1 评论 0原文

我使用 Silverlight 单元测试框架,它运行得很好。

然而,每次启动测试时,我都必须等待 5 秒或单击“不,运行所有测试”按钮。

有没有办法跳过我不需要的这一步?

I use the Silverlight Unit Testing Framework and it works pretty well.

However every time I launch my tests, I have to wait 5 seconds or click the "No, run all tests" button.

Is there a way to skip this step that I don't need?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若水微香 2024-12-13 22:34:13

在 App.xaml.cs 中:

替换

RootVisual = UnitTestSystem.CreateTestPage();

UnitTestSettings settings = UnitTestSystem.CreateDefaultSettings();
settings.StartRunImmediately = true;
settings.ShowTagExpressionEditor = false;

RootVisual = UnitTestSystem.CreateTestPage(settings);

In the App.xaml.cs:

Replace

RootVisual = UnitTestSystem.CreateTestPage();

With

UnitTestSettings settings = UnitTestSystem.CreateDefaultSettings();
settings.StartRunImmediately = true;
settings.ShowTagExpressionEditor = false;

RootVisual = UnitTestSystem.CreateTestPage(settings);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文