引入了junti包 无法使用@Test解决办法
今天发现在测试类里面使用不了@Test注解,导致我无法使用测试,虽然结果是不能用,但是导致这种的情况有很多种。于是我在网上收集了一些解决这种问题的方法。
1.Junit版本问题:
一开始的 Junit 的版本是3.8.2的,版本有点低了。
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
</dependency>
我改为4.9版本的就可以使用了。这个是在我的项目出现问题
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
</dependency>
2.Junit依赖中的标签
和上述一样,依赖出现的问题。这个在与test 中出现。
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
解决方法就是删掉test 就行。
scope表示Junit可用的位置,因为使用test(测试)的scope(范围)表示Junit只有在src下的test文件夹下使用。