NetBeans和不可见的jUnit库

时间:2012-11-23 02:37:13

标签: netbeans junit netbeans-7.2

我使用普通的NetBeans安装程序安装了jUnit但是当我尝试打开一个使用jUnit的项目时,我得到一个对话框,说我必须解决缺少的引用。另外,当我试图找到jUnit库时,我注意到它不在库列表中。

我已经尝试过安装NetBeans jUnit插件。

我该怎样做才能让jUnit正常工作?

上下文:

  • Windows 7 SP1 64位版
  • NetBeans 7.2

1 个答案:

答案 0 :(得分:2)

取决于您正在使用的项目类型。

<强>蚂蚁
右键单击Libraries文件夹,然后选择Add Library... 将出现一个新窗口,您可以在其中选择要添加的JUnit版本。

<强>的Maven
打开Project Files / pom.xml。 像这样声明一个JUnit依赖:

<dependencies>
  <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.10</version>
    <scope>test</scope>
  </dependency>
</dependencies>