软件测试(三)—— 参数化测试用例(Nextday.java)
import static org.junit.Assert.*;
import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
//这个不可少
@RunWith(value = Parameterized.class)
public class NextdayTest {
private Date expected;
private Date value;
@Parameters
public