Junit参数化设置

Posted 菜鸡蔡文姬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Junit参数化设置相关的知识,希望对你有一定的参考价值。

package com.myz.util;

import static org.junit.Assert.*;

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(Parameterized.class)
public class JunitParameterTest {
    
    /**
     * 1.更改默认的运行器为@RunWith(Parameterized.class)
     * 2.声明变量来存放预期值和结果值
     * 3.声明一个返回值为collection的公共静态方法,并使用@Parameters进行修饰
     * 4.为测试类声明一个带参数的公共构造函数,并在其中为之声明变量赋值
     */
    
    int expected=0;
    int input1=0;
    int input2=0;
    
    @Parameters
    public static Collection<Object[]> t(){//保存参数
        return Arrays.asList(new Object[][]{
            {3,1,2},
            {4,2,2}
        });
    }

    public JunitParameterTest(int expected, int input1, int input2) {
        this.expected = expected;
        this.input1 = input1;
        this.input2 = input2;
    }
    
    @Test
    public void testAdd(){//将参数传入,测试
        assertEquals(expected,new Calculate().add(input1, input2));
    }
}

 

以上是关于Junit参数化设置的主要内容,如果未能解决你的问题,请参考以下文章

如何使用参数化运行 JUnit SpringJUnit4ClassRunner?

[JUnit] JUnit5 基础 4 - Maven 集成,参数化测试,重复测试 [完]

Junit参数化构造函数 - 参数数量错误

junit 单元测试 - 参数化测试

JUnit测试POST到参数化的API

不同Android SDK版本的JUnit4参数化测试