gpt4 book ai didi

testing - 过滤 junit 测试套件时未找到测试

转载 作者:行者123 更新时间:2023-11-28 19:53:32 24 4
gpt4 key购买 nike

我想运行一个 junit4 测试套件并在 build.gradle 中使用过滤器指定它,但 gradle(版本 2.10)找不到测试。有没有办法在 gradle 中运行指定的 junit 测试套件?

我的测试套件类

    @RunWith(Suite.class)    @SuiteClasses({ TestFoo.class, TestBar.class })    public class MyTestSuite {    }

构建.gradle

    test {        filter {            includeTestsMatching "*MyTestSuite"        }    }

最佳答案

DSL documentation 中的示例使用 include 代替:

test {
// explicitly include or exclude tests
include 'org/foo/**'
exclude 'org/boo/**'
}

关于testing - 过滤 junit 测试套件时未找到测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34937774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com