如何获得 Java 代码覆盖率的完整覆盖率? Junit 测试用例

How to get full coverage for Java Code Coverage? Junit test cases

我正在为一门课程做作业,我需要全面了解此方法

这些是属性和构造函数,这是一个咖啡机程序,这是食谱class

public class Recipe {
private String name;
private int price;
private int amtCoffee;
private int amtMilk;
private int amtSugar;
private int amtChocolate;

/**
 * Creates a default recipe for the coffee maker.
 */
public Recipe() {
    this.name = "";
    this.price = 0;
    this.amtCoffee = 0;
    this.amtMilk = 0;
    this.amtSugar = 0;
    this.amtChocolate = 0;
}

我用过

    /*
 * setPrice test
 */
@Test
public void testSetPrice_1() throws RecipeException {
    r1.setPrice("25");
    r1.setPrice("0");
}

/*
 * setPrice test
 */
@Test(expected = RecipeException.class)
public void testSetPrice_2() throws RecipeException {
    r1.setPrice("adsada");
    r1.setPrice(" ");
    r1.setPrice("-1");
}

当我使用 RecipeException 时,recipeException 似乎没有被捕捉到,甚至认为我知道它会被抛出,但覆盖范围没有到达整个方法。

这个 class 是唯一一个没有完全覆盖的,这个 RecipeException 似乎没有任何内容。

抛出 RecipeException 时,我应该如何进行测试才能使其完全覆盖?

此代码属于课程 edu.ncsu。csc326.coffeemaker

您的测试失败是因为在 testSetPrice_2 方法中,r1.setPrice("adsada"); 的初始调用导致抛出 NumberFormatException 中断测试的执行 ...

    r1.setPrice(" ");
    r1.setPrice("-1");

因此永远不会 运行。要解决此问题,您需要每次调用 r1.setPrice(...)

单独的测试方法,例如如下图:

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

public class RecipeTest {
    Recipe r1;

    @Before
    public void setUp() throws Exception {
        r1 = new Recipe();
    }

    @Test
    public void testSetPriceValid_1() throws RecipeException {
        r1.setPrice("25");
    }

    @Test
    public void testSetPriceValid_2() throws RecipeException {
        r1.setPrice("0");
    }

    @Test(expected = RecipeException.class)
    public void testSetPriceInvalid0() throws RecipeException {
        r1.setPrice("adsada");
    }

    @Test(expected = RecipeException.class)
    public void testSetPriceInvalid1() throws RecipeException {
        r1.setPrice(" ");
    }

    @Test(expected = RecipeException.class)
    public void testSetPriceInvalid2() throws RecipeException {
        r1.setPrice("-1");
    }

}