当我写一些黄瓜测试时,我从一些文档中发现我需要在“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网站搜索了名称转换,但没有找到任何相关文档。只是想了解更多相关信息。
我相信会议是:
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/