测试预期异常,抛出异常(它显示在输出中)但测试失败无论如何

时间:2015-01-23 20:28:03

标签: java exception junit exception-handling

嗨,所以有一个车辆构造函数的测试。测试使用没有驾驶执照的驾驶员初始化车辆,并且应该抛出异常。 代码构造函数:

public Voertuig(String Merk, Datum datumEersteIngebruikname, int Aankoopprijs, int Zitplaatsen, Mens bestuurder, Mens ... ingezetenen) {
    this.nummerplaat = div.getNummerplaat();
    this.Zitplaatsen = Zitplaatsen;
    try {

        this.Merk = Merk;
        this.datumEersteIngebruikname = datumEersteIngebruikname;
        this.Aankoopprijs = Aankoopprijs;
        if (!Arrays.asList(bestuurder.getRijbewijs()).contains(Rijbewijs.B) || !Arrays.asList(bestuurder.getRijbewijs()).contains(Rijbewijs.BE)) {
            throw new MensException("Geen correct rijbewijs");
        } else {
            this.bestuurder = bestuurder;
            Ingezetenen.add(bestuurder);
        }
        Mens[] a = ingezetenen;
        if (a.length > Zitplaatsen - 1) {
            throw new MensException("te veel ingezetenen");
        } else {
            for (int i = 0; i < a.length; i++) {
                ingezetenenExclBestuurder.add(a[i]);
                Ingezetenen.add(a[i]);
            }
        }

    } catch (MensException e) {
        System.out.println(e.getMessage());
    } 
}

代码测试:

 @Test(expected = be.vdab.util.mens.MensException.class)
    public void test_constructor_zonder_Rijbewijs() {
     //VOERTUIG B,BE//bestuurder:---
        Voertuig voertuig = new TestVoertuig("auto", datum, 18300, AANTAL_INZITTENDEN, INGEZETENE_A);
}  

当我运行这种专注的测试方法时,这就是结果。

-------------标准输出---------------

Geen纠正rijbewijs


Testcase: Testcase: test_constructor_zonder_Rijbewijs(be.vdab.voertuigen.VoertuigTest): FAILED
Expected exception: be.vdab.util.mens.MensException
junit.framework.AssertionFailedError: Expected exception: be.vdab.util.mens.MensException

因此根据输出异常被捕获并显示但测试失败。谁知道为什么?提前谢谢。

编辑:我通过不包括try-catch块来修复它,但只是抛出异常导致必须在创建对象的每个测试方法中添加'throws MensException'。我通过调整我的自定义MensException修复了这个问题,而不是扩展Exception我扩展了RuntimeException所以我没有在每个测试方法中添加'throws MensException'。

3 个答案:

答案 0 :(得分:2)

在您的方法中,您正在捕获异常并记录消息(这是一种不好的做法,您应该记录堆栈跟踪)并在测试中说明测试的执行必须扔掉be.vdab.util.mens.MensException而不被抓住。

在被测试的方法/构造函数中重新抛出它或者根本不捕获它。

选项1:

public Voertuig(/*  ...your arguments here... */) {
    this.nummerplaat = div.getNummerplaat();
    this.Zitplaatsen = Zitplaatsen;
    try {
        //...
        //code in the try...
        //...
    } catch (MensException e) {
        //System.out.println(e.getMessage());
        //use a logger, not System.out
        //in case you still want to use System.out
        //then at least use the code shown below
        //e.printStackTrace(System.out);
        //line above commented since there's no need to log
        //and rethrow the exception
        //the exception will be handled by the highest level execution
        //and there it should be logged or use another strategy
        throw e;
    } 
}

选项2:

public Voertuig(/*  ...your arguments here... */) {
    this.nummerplaat = div.getNummerplaat();
    this.Zitplaatsen = Zitplaatsen;
//remove the try
//    try {
    //...
    //code in the try...
    //...
//remove the catch
//    } catch (MensException e) {
//        System.out.println(e.getMessage());
//    } 
}

IMO我会使用选项2而不是选项1.

答案 1 :(得分:1)

您实际上是在catch块中捕获异常。这就是为什么你的测试未能得到预期的异常的原因。

答案 2 :(得分:0)

下面:

    } catch (MensException e) {
        System.out.println(e.getMessage());
    } 

您捕获异常,因此不会将其抛给测试类。

更改为:

} catch (MensException e) {
    System.out.println(e.getMessage());
    throw e
}