单元测试 WPF 用户控件

发布于 2024-08-05 08:05:46 字数 321 浏览 4 评论 0原文

是否可以从 NUnit(或类似的)测试我的 WPF UserControls?如果我在单元测试中创建用户控件的实例,如下所示:

// Create an instance of the WPF UserControl
var view = new ChildrenListView();

我收到以下错误:

"The calling thread must be STA, because many UI components require this"

我感觉我在这里缺少一些非常重要的东西。

Is it possible to test my WPF UserControls from NUnit (or similar)? If I create an instance of the usercontrol in a unit test like so:

// Create an instance of the WPF UserControl
var view = new ChildrenListView();

I get the following error:

"The calling thread must be STA, because many UI components require this"

I get the feeling I'm missing something very important here.

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

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

发布评论

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

评论(1

宫墨修音 2024-08-12 08:05:46

使用[STAThread]属性。

    [Test]
    [STAThread]
    public void TestConstructorDoesNotThrow()
    {
        Expect(() => new ChildrenListView(), Throws.Nothing);
    }

Use the [STAThread] attribute.

    [Test]
    [STAThread]
    public void TestConstructorDoesNotThrow()
    {
        Expect(() => new ChildrenListView(), Throws.Nothing);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文