文件夹结构就像
john > work > com > project > src > Java > SomeTestFile.java
以及其他多个文件
我在john文件夹中运行此命令
mvn test -Dtest=work.com.project.src.java.SomeTestFile
并收到错误消息
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test) on project hive-ingestion: No tests were executed!
这很奇怪,因为我有测试用例。
The SomeTestFile.java
看起来像
public class SomeTestFile{
@BeforeClass
public void beforeClass(){
.........
}
@Test
public void processA thows Exception(){
}
}
我应该在我的测试文件中添加一些内容以确保其运行。