单元测试ParameterTest
package com.yiautos.psf.sup.service.impl; import org.assertj.core.util.Arrays; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import java.util.Collection; /** * $ * * @author * @return $ * @date $ $ */ @RunWith(Parameterized.class) public class ParameterTest { private int input1; private int input2; private int expected; /** * 准备数据。数据的准备需要在一个方法中进行,该方法需要满足一定的要求: * <p> * 1)该方法必须由Parameters注解修饰 * 2)该方法必须为public static的 * 3)该方法必须返回Collection类型 * 4)该方法的名字不做要求 * 5)该方法没有参数 * * @return */ @Parameterized.Parameters @SuppressWarnings("unchecked") public static Collection prepareData() { Object[][] object = {{-1, -2, -3}, {0, 2, 2}, {-1, 1, 0}, {1, 2, 3}}; return Arrays.asList(object); } public ParameterTest(int input1, int input2, int expected) { this.input1 = input1; this.input2 = input2; this.expected = expected; } @Test public void testAdd() { Add add = new Add(); int result = add.add(input1, input2); Assert.assertEquals(expected, result); } public class Add { public int add(int input1, int input2) { return input1 + input2; } } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
2020-04-18 git 合并工具选择位置
2020-04-18 C#中的委托是什么