如何使用 Ant 执行 JUnit 5 @Tag 测试



如何使用 Ant 运行带有 @Tag 注释的 JUnit 5 测试?

例如:

class Tax {
    @Test
    @Tag("taxes")
    void testingTax() {
    }
}

在 Maven 中,我可以执行以下操作来包含或排除。但是我不知道如何让它在蚂蚁中工作。

<properties>
    <includeTags>taxes</includeTags>
    <excludeTags>Promo</excludeTags>
</properties>

恳请指教。

从 10.7 开始,现在支持它。

见 https://ant.apache.org/manual/Tasks/junitlauncher.html

(包括标签和排除标签(

我也需要它,所以我贡献了它。

根据Apache Ant开发人员的说法,目前不支持JUnit5。但是,根据此错误报告,它们已经开始工作。这里还有一条关于这个主题的消息。

相关内容

  • 没有找到相关文章

最新更新