Junit参数化设置报错

来源:4-2 JUnit参数化设置

慕粉1406301482

2017-06-27 16:45

package com.imooc.junit;

import static org.junit.Assert.*;

import java.util.Arrays;
import java.util.Collections;

import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;

@RunWith(Parameterized.class)
public class ParameterTest {
    int expection = 0;
    int input01 = 0;
    int input02 = 0;
    
    @Parameters
    public static Collections<Object[]> t() {
        return Arrays.asList(new Object[][]{
                {3,1,2},
                {4,2,2}
        }) ;
    }
    
    public ParameterTest(int expenction,int input01,int input02){
        this.expection = expenction;
        this.input01 = input01;
        this.input02 = input02;
    }
    
    public void testAdd(){
        assertEquals(expection, new Calculate().add(input01, input02));
    }

}

同样的代码,Collection不加上s反而报错更多,小新人不了解,是不是有什么版本问题?(我一模一样的敲,试过把老师的代码复制过来,也是报错)

说是类型无法转换。。。?

The type Collections is not generic; it cannot be parameterized with arguments <Object[]>

写回答 关注

2回答

  • wangsha0
    2018-02-22 17:06:56
    已采纳

    这里用的的是Collection,在导入时,要使用  import java.util.Collection

    Collection是接口,是Java集合框架的顶级接口;而Collections是一个具体的工具类,不是泛型类;Arrays.asList(...)返回的是个接口,使用了泛型,如下图:

    http://img1.mukewang.com/5a8e879e000139b505700114.jpg


    另外,检查 Calculate类是否存在,以及类的包路径、测试类的路径。

    慕粉1406...

    非常感谢!

    2018-02-23 22:11:50

    共 1 条回复 >

  • 慕粉1406301482
    2017-06-27 17:21:31

    ......系统反应慢半拍啊。。。。而且,我的错误也是真多

JUnit—Java单元测试必备工具

Java单元测试利器,提升Java代码质量,工作效率不用愁

77960 学习 · 93 问题

查看课程

相似问题