我正在使用surefire插件尝试运行一些单元测试。在那一刻,我基本上拥有了" Hellow,world!"所有单元测试。这是代码:
import org.junit.Test;
public class TestDefaults {
@Test
public void TestOne() {
System.out.println("A simple unit Test");
}
@Test
public void TestTwo()
{
System.out.println("Another little test");
}
}
但是当我跑步时:
mvn clean test
我收到了消息:
[INFO] No tests to run.
[INFO] Skipping execution of surefire because it has already been run for this configuration
如果我跑:
mvn clean -X test
我没有看到任何其他用途,而不是上述信息。
该类也位于src / test / java /
下所以我认为这确实应该有用。
操作系统:MAC IDE:IntelliJ 构建工具:Maven