【问题标题】:@Rule declaration causes error on a debug attempt@Rule 声明导致调试尝试出错
【发布时间】:2013-04-02 15:37:52
【问题描述】:

一个 groovy JUnit 测试类只有一个静态声明:

@Rule
public static ErrorCollector errorCollector;

尝试在调试模式下启动测试后引发异常:

java.lang.NullPointerException
at org.junit.runners.BlockJUnit4ClassRunner.withRules(BlockJUnit4ClassRunner.java:354)
at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:270)
at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

在代码中的任何行开始之前引发异常。 如果我扔掉“@Rule”这个词,测试运行正常(至少从一开始)

进口是:

import static org.hamcrest.CoreMatchers.*;
import org.hamcrest.Matcher;
import static org.hamcrest.Matchers.*;

import org.junit.Rule;
import org.junit.rules.ErrorCollector;
import org.junit.Test;
import static org.junit.Assert.*;
import org.junit.Before;

import groovy.util.slurpersupport.NodeChild
import groovy.xml.MarkupBuilder
import groovy.xml.StreamingMarkupBuilder
import groovy.xml.XmlUtil
import org.codehaus.groovy.tools.xml.DomToGroovy

import org.joda.time.DateTime
import org.w3c.dom.Document;

import java.util.concurrent.Callable;

JUnit 4.8.2 版

Eclipse 版本:3.6

Java 版本:1.6.41

请问我应该去哪里找问题?

【问题讨论】:

标签: java eclipse groovy junit junit-rule


【解决方案1】:

正如您在ErrorCollector javadoc 看到的,您必须创建一个实例才能使用它,如下所示:

    @Rule
    public ErrorCollector collector= new ErrorCollector();

【讨论】:

  • 它有效。但我不明白,为什么。 javadocs中显示的可能性并不意味着我们必须使用它,不是吗?我会提出另一个问题。非常感谢大家
  • 你的代码现在怎么样了?您删除了static 修饰符?还是只是创建了ErrorCollector 的实例?
【解决方案2】:

这似乎是 Runner 中的一个错误:

//Correct variants:
@Rule
public ErrorCollector collector1= new ErrorCollector();


public ErrorCollector collector2= null;
@Rule
collector2= new ErrorCollector();

public ErrorCollector collector3;
@Rule
collector3= new ErrorCollector();


// incorrect variants:
@Rule
public ErrorCollector collector4= null;

@Rule
public ErrorCollector collector5;

@Rule
public ErrorCollector collector5=somethingThatIsNotRule;

@Rule
public ErrorCollector collector5=anotherRule;

//BUT:
//the runner takes the following, and runs it without problems, too:

public ErrorCollector collector6= null;
{
  @Rule
  collector6= null;
}

因此,运行者在构建测试之前进行了过度检查。

【讨论】:

    猜你喜欢
    • 2011-06-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-12-17
    • 2019-07-07
    • 2016-07-07
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多