0


idea中添加单元测试@Test注解引入

添加依赖,使用 @Test 即可。

<dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>4.12</version>
</dependency>

@Test注解找不到或没有的原因:

我们要进行项目的某部分的test测试,会放在名为test的文件夹下,而现在我们的文件夹测试并不是test下面的一个测试,所以如果我们希望在别的地方也可以利用test注解,只需要去掉scope这一行就行了。

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>     // 将此行去掉
</dependency>

本文转载自: https://blog.csdn.net/conving/article/details/136211049
版权归原作者 种麦南山下 所有, 如有侵权,请联系我们删除。

“idea中添加单元测试@Test注解引入”的评论:

还没有评论