编写多个测试函数会为每种情况(第一种情况除外)提供NullPointerException

时间:2019-06-13 08:40:04

标签: java eclipse testing junit4

我正在尝试测试VideoStore类的功能,该类包含一个名为store的Video类型的数组。当我将测试类作为junit测试运行时,只有4个测试中的第一个通过,其他则抛出NullPointer异常。当我分别运行它们时,每个测试都会通过。我给了我的测试课。

我已经尝试使用@BeforeClass代替@Before Annotation。 我也尝试过分别在East @Test函数中实例化。

import static org.junit.Assert.*;

import org.junit.Before;
import org.junit.Test;

import tm2.VideoStore;

public class VideoTest {
VideoStore vs;

@Before
public void before() {
    vs = new VideoStore();
    vs.addVideo("LifeOfGuy");
}

@Test
public void testAddVideo() {
    assertEquals("LifeOfGuy",vs.store[0].videoName);
}

@Test
public void testDoCheckout() {
    vs.doCheckout(vs.store[0].videoName);
    assertTrue(vs.store[0].checkout);
}

@Test
public void testDoReturn() {
    vs.doReturn("LifeOfGuy");
    assertFalse(vs.store[0].checkout);
}

@Test
public void receiveRating() {
    vs.receiveRating("LifeOfGuy", 5);
    assertEquals(5,vs.store[0].rating);
}
}

VideoStore类:

public class VideoStore {

public Video[] store = new Video[10];
static int count = 0;

public void addVideo(String name) {
    store[count++] = new Video(name);
}

public void doCheckout(String name) {
    for(int i=0; i<count; i++) {
        if((store[i].videoName).equals(name)) {
            store[i].doCheckout();
            break;
        }
    }
}

public void doReturn(String name) {
    for(int i=0; i<count; i++) {
        if((store[i].videoName).equals(name)) {
            store[i].doReturn();
            break;
        }
    }
}

public void receiveRating(String name, int rating) {
    for(int i=0; i<count; i++) {
        if((store[i].getName()).equals(name)) {
            store[i].receiveRating(rating);
        }
    }
}

void listInventory() {
    System.out.println("----------------------------------------");
    System.out.println("Video Name | Checkout Status | Rating ");
    for(int i=0; i<count; i++) {
        System.out.println(store[i].videoName+"  |  "+store[i].getCheckout()+"  |  "+store[i].getRating());;
    }
    System.out.println("----------------------------------------");
}
}

Junit结果:---- 运行4/4错误3失败0 1. testAddVideo通过 2. testDoCheckout java.lang.NullPointerException 3. testDoReturn java.lang.NullPointerException 4. testreceiveRating java.lang.NullPointerException

每一个单独通过

1 个答案:

答案 0 :(得分:2)

您的count变量是静态的,因此每次测试都会增加,并且新视频将针对每次测试添加到数组中的其他位置

使其为非静态

private int count = 0;