我建立了一个 maven 项目,在 src/test/文件夹中我有一个简单的 junit 测试。pom结构如下
<project...>
<groupId>com.store</groupId>
<artifactId>SampleProject</artifactID>
<version>1.0</version>
..........
.........
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
.......
.......
</plugins>
</build>
</project>
而junit测试如下
public class SampleTest
{
@Test
public void sampleTest(){
Assert.assertEquals(true, true);
}
}
当我从命令行说 mvn test 时(在执行 mvn clean install 之后),它说
[INFO] --- maven-surefire-plugin:2.14.1:test (default-test) @ SeleniumTests ---
[INFO] Tests are skipped.
这是什么原因。?我在哪里出错了吗?
谢谢,马诺伊