为什么黄瓜会找到“runTest.java”来运行测试?

问题描述 投票:1回答:1

当我写一些黄瓜测试时,我从一些文档中发现我需要在“src / test / java / somepackage”下创建一个“runTest.java”文件,内容配置黄瓜,如:

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@CucumberOptions(plugin = {"pretty"})
public class runTest {
}

我发现类名“runTest”很有趣,因为如果我将它重命名为任何其他名称,mvn test将不再找到它。

我从junit网站搜索了名称转换,但没有找到任何相关文档。只是想了解更多相关信息。

java junit cucumber
1个回答
6
投票

我相信会议是:

  • Test*.java
  • *Test.java
  • *TestCase.java

它不是JUnit约定,而是定义它的Maven surefire插件:https://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html

参考:https://scompoprojects.wordpress.com/2016/02/03/junit-test-class-names-are-important-with-maven/

© www.soinside.com 2019 - 2024. All rights reserved.