maven项目如何引入junit呢?
今天在编写测试程序时,使用@Before注解时,发现无法使用,仔细观察时,发现没有引入相应的jar包,
那么使用junit,需引入哪些jar包呢?下文笔者将一一道来,如下所示:
----------------------------------------------------------------------------------------------------------
只需在相应的pom文件中,放入以下代码,即可
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
那么使用junit,需引入哪些jar包呢?下文笔者将一一道来,如下所示:
----------------------------------------------------------------------------------------------------------
只需在相应的pom文件中,放入以下代码,即可
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。