不调用TestRule中的@Before方法

时间:2015-05-12 15:29:20

标签: java junit-rule

我实现了 JUnit 4 TestRule(扩展ExternalResource),并将其作为@ClassRule注入我的测试类中:我想初始化一个在这个班级的每次考试中都会为所有人提供一次资源,最终将其拆除。

我的问题是我的@Before方法之前/之后根本没有调用@After@Test规则方法:知道为什么会发生这种情况吗?

最小的可编辑示例:

package com.acme.test;

import static org.junit.Assert.assertNull;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.rules.ExternalResource;

class Coffee {
    public void throwAway() {}
}

class CoffeeMachine extends ExternalResource {
    Coffee whatElse;    
    @Override protected void before() throws Throwable {
        whatElse = new Coffee();
    }

    @Override protected void after() {
        whatElse.throwAway();
    }

    public Coffee gimmieCoffee() { return whatElse; }
}

public class CoffeeTester {
    @ClassRule public static CoffeeMachine CM = new CoffeeMachine();

    @Test public void drinkACoffee() {
        Coffee c = CM.gimmieCoffee();
        assertNull(c);  // ---> Coffee is null!!                       (fuuuuuuuuuu...)
    }
}

我有什么误解吗?请注意,非静态@Rule会发生同样的情况。

我正在使用 JUnit 4.11

非常感谢您的任何暗示。

2 个答案:

答案 0 :(得分:4)

我认为这是你的测试跑步者的一个问题。也许某个插件安装了一个自定义运行器,当你从Ecilpse运行测试时使用它?

检查测试的运行配置,并确保使用标准的JUnit 4测试运行器:

enter image description here

答案 1 :(得分:3)

我在这里看不到任何问题,但只是一个误解。首先,让我们将assert作为it must be阅读并稍微更改您的代码(很明显,您的测试显示c must not be null给了我们:assertNotNull(c);

我还添加了一些输出,以便向您展示正在发生的事情。请尝试运行它。

package com.acme.test;

import static org.junit.Assert.assertNotNull;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.rules.ExternalResource;

class Coffee {
    public void throwAway() {}
}

class CoffeeMachine extends ExternalResource {
    Coffee whatElse;    
    @Override protected void before() throws Throwable {
        whatElse = new Coffee();
        System.out.println(" ### executing before: " + whatElse);
    }

    @Override protected void after() {
        whatElse.throwAway();
    }

    public Coffee gimmieCoffee() { return whatElse; }
}

public class CoffeeTester {
    @ClassRule public static CoffeeMachine CM = new CoffeeMachine();

    @Test public void drinkACoffee() {
        Coffee c = CM.gimmieCoffee();
        System.out.println(" ### executing test: " + c);
        assertNotNull(c); 
    }
}

对我而言,它给出了以下内容:

 ### executing before: com.acme.test.Coffee@28f67ac7
[VerboseTestNG] INVOKING: "com.acme.test.CoffeeTester" - com.acme.test.CoffeeTester.drinkACoffee()
 ### executing test: com.acme.test.Coffee@28f67ac7
[VerboseTestNG] PASSED: "com.acme.test.CoffeeTester" - com.acme.test.CoffeeTester.drinkACoffee() finished in 4 ms
[VerboseTestNG] 
[VerboseTestNG] ===============================================
[VerboseTestNG]     com.acme.test.CoffeeTester
[VerboseTestNG]     Tests run: 1, Failures: 0, Skips: 0
[VerboseTestNG] ===============================================

所以c不是你想象的那样。