junit @test 标签失效

发现是版本问题


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

之前版本是3.8.1

现在改为:

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<!-- <scope>test</scope> -->
</dependency>

就可以 用@test 运行测试用例了。

你可能感兴趣的:(JUnit)