6

我通常不会遇到 JUnit 注释的问题。但是今天不知何故,随着我新安装的 Netbeans 7.2,我在使用@Before注释时遇到了以下错误:

annotation before is missing value for the attribute value

有谁知道如何解决这一问题?


更新

我正在编写一个 mavenized 网络应用程序。对于TestCase,当我尝试导入org.junit.Before程序而不是导入时org.aspectj.lang.annotation.Before

4

2 回答 2

10

即使在添加 junit 依赖项后,您是否仍然遇到相同的错误pom.xml

检查您是否正在导入正确的库,即

import org.junit.Before;

代替

import org.aspectj.lang.annotation.Before;
于 2018-07-26T20:10:14.697 回答
7

您是否声明了对最新 JUnit 版本的依赖?

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

您应该能够导入正确的类:org.junit.Before.

于 2012-09-25T02:15:34.757 回答