被测试类:

package project;

public class MyCalendar2 {
public int getNumberOfDaysInMonth(int year, int month) {
if (month == 1 || month == 3 || month == 6 || month == 7 ||
month == 8 || month == 10 )
return 31;
if (month == 4 || month == 5 || month == 9 || month == 11)
return 30;
if (month == 2) return 28;
return 0; // If month is incorrect
}
}

设计测试数据:

             输入

预计输出

2018  1

31

2018  2

28

2018  3

31

2018  4

30

2018  5

31

2018  6

30

2018  7

31

2018  8

31

2018  9

30

2018  10

31

2018  11

30

2018  12

31

2018  13

0

2008  2

29

  

一般测试:

package project;

import static org.junit.Assert.*;

import org.junit.Test;

/**
*
* @author weiTangzhao
* @Time
*
*/
public class MyCalendar2Test { MyCalendar2 m = new MyCalendar2();
@Test
public void testGetNumberOfDaysInMonth1(){
int days = m.getNumberOfDaysInMonth(2018, 1);
assertEquals(31, days);
} @Test
public void testGetNumberOfDaysInMonth2(){
int days = m.getNumberOfDaysInMonth(2008, 2);
assertEquals(29, days);
} @Test
public void testGetNumberOfDaysInMonth21(){
int days = m.getNumberOfDaysInMonth(2018, 2);
assertEquals(28, days);
}
@Test
public void testGetNumberOfDaysInMonth3(){
int days = m.getNumberOfDaysInMonth(2018, 3);
assertEquals(31, days);
} @Test
public void testGetNumberOfDaysInMonth4(){
int days = m.getNumberOfDaysInMonth(2008, 4);
assertEquals(30, days);
} @Test
public void testGetNumberOfDaysInMonth5(){
int days = m.getNumberOfDaysInMonth(2018, 5);
assertEquals(31, days);
} @Test
public void testGetNumberOfDaysInMonth6(){
int days = m.getNumberOfDaysInMonth(2018, 6);
assertEquals(30, days);
} @Test
public void testGetNumberOfDaysInMonth7(){
int days = m.getNumberOfDaysInMonth(2018, 7);
assertEquals(31, days);
} @Test
public void testGetNumberOfDaysInMonth8(){
int days = m.getNumberOfDaysInMonth(2018,8);
assertEquals(31, days);
}
@Test
public void testGetNumberOfDaysInMonth10(){
int days = m.getNumberOfDaysInMonth(2018, 10);
assertEquals(31, days);
} @Test
public void testGetNumberOfDaysInMonth9(){
int days = m.getNumberOfDaysInMonth(2018, 9);
assertEquals(30, days);
} @Test
public void testGetNumberOfDaysInMonth11(){
int days = m.getNumberOfDaysInMonth(2018, 11);
assertEquals(30, days);
}
@Test
public void testGetNumberOfDaysInMonth12(){
int days = m.getNumberOfDaysInMonth(2018, 12);
assertEquals(31, days);
} @Test
public void testGetNumberOfDaysInMonth13(){
int days = m.getNumberOfDaysInMonth(2018, 13);
assertEquals(0, days);
} }

参数化测试:

package project;

import static org.junit.Assert.*;

import java.util.Arrays;
import java.util.Collection; import org.junit.Assert;
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 MyCalendar2Test2 { private int input1;
private int input2;
private int expected; /**
* 准备数据。数据的准备需要在一个方法中进行,该方法需要满足一定的要求: 1)该方法必须由Parameters注解修饰
2)该方法必须为public static的
3)该方法必须返回Collection类型
4)该方法的名字不做要求
5)该方法没有参数
* @return
*/
@Parameters
@SuppressWarnings("unchecked")
public static Collection prepareData(){
Object[][] object = {{2018,1,31},{2018,2,28},{2018,3,31},{2018,4,30},{2018,5,31},{2018,6,30},
{2018,7,31},{2018,8,31},{2018,9,30},{2018,10,31},{2018,11,30},{2018,12,31},{2018,13,0},{2008,2,29}}; return Arrays.asList(object);
} public MyCalendar2Test2(int input1,int input2,int expected){
this.input1 = input1;
this.input2 = input2;
this.expected = expected;
} @Test
public void testGetNumberOfDaysInMonth(){
MyCalendar2 m = new MyCalendar2();
int result = m.getNumberOfDaysInMonth(input1,input2);
Assert.assertEquals(expected,result);
} }

参考博客:

https://www.cnblogs.com/byron0918/p/4801152.html

测试 | 单元测试工具 | JUnit | 参数化的更多相关文章

  1. 测试 | 单元测试工具 | JUnit

    http://junit.sourceforge.net/javadoc/org/junit/Assert.html 使用: 新建测试类: 在预测试的类上点击右键--->NEW--->Ju ...

  2. 单元测试工具Junit浅谈

    什么是单元测试?   写了一个类和一些方法,给别人用,会不会有bug?那就测一下这些方法吧 怎么测?   用main方法测?不能一起运行,需要人为观察输出是否正确,测试效率低 单元测试能带来什么好处? ...

  3. Maven的安装配置及初次创建项目与java单元测试工具JUnit

    Maven  安装     1.把maven安装包解压到某个位置     2.配置M2_HOME环境变量指向这个位置 3.在path环境变量中添加;%M2_HOME%\bin 配置镜像 国内的阿里云镜 ...

  4. 11th 单元测试工具JUnit的学习

    1.写好一个简易的四则运算的程序 UnitTest类文件: public class UnitTest { int a; int b; int answer;//正确答案 public int plu ...

  5. Hibernate单元测试工具junit

    相关注解 @Text :测试方法 @Before :初始化方法 @After : 释放资源

  6. 单元测试利器 JUnit 4

    引言 毋庸置疑,程序员要对自己编写的代码负责,您不仅要保证它能通过编译,正常地运行,而且要满足需求和设计预期的效果.单元测试正是验证代码行为是否满足预期的有效手段之一.但不可否认,做测试是件很枯燥无趣 ...

  7. [转]单元测试利器 JUnit 4

    引言 毋庸置疑,程序员要对自己编写的代码负责,您不仅要保证它能通过编译,正常地运行,而且要满足需求和设计预期的效果.单元测试正是验证代码行为是否满足预期的有效手段之一.但不可否认,做测试是件很枯燥无趣 ...

  8. Java知识积累——单元测试和JUnit(一)

    说起单元测试,刚毕业或者没毕业的人可能大多停留在课本讲述的定义阶段,至于具体是怎么定义的,估计也不会有太多人记得.我们的教育总是这样让人“欣 慰”.那么什么是单元测试呢?具体科学的定义咱就不去关心了, ...

  9. 单元测试实战 - Junit测试

    一.对加法函数进行测试 1.实例化被测单元(方法):类名 实例名=new 类名([参数]) 2.调用被测单元,对比预期值和输出值(实际值): 在没有junit测试工具的情况下,我们要进行如下的测试代码 ...

随机推荐

  1. CAN协议与CANOpen协议

    这里详细介绍了CAN协议中数据通信帧每位的含义,有图片,值得一看:https://www.cnblogs.com/pejoicen/p/3986587.html 这里介绍了CanOpen协议,http ...

  2. Machine Learning in Action(3) 朴素贝叶斯算法

    贝叶斯决策一直很有争议,今年是贝叶斯250周年,历经沉浮,今天它的应用又开始逐渐活跃,有兴趣的可以看看斯坦福Brad Efron大师对其的反思,两篇文章:“Bayes'Theorem in the 2 ...

  3. Linux随笔-鸟哥Linux服务器篇学习总结(全)

    作者:Danbo 时间:2015-7-17 在runlevel3启动级别下默认启动网络挂载(autofs)机制,我们可以通过命令将其关闭:chkconfig autofs off 或者 /etc/in ...

  4. go 客户端服务端通信

    client.go package main import ( "bufio" "encoding/json" "fmt" "ha ...

  5. leetcode 748. Shortest Completing Word

    Find the minimum length word from a given dictionary words, which has all the letters from the strin ...

  6. HttpServlet cannot be resolved to a type解决方法

    1:是因为没有加入servlet-api.jar 2:下载网址:http://download.csdn.net/detail/jiuyueguang/5745209 3:然后在项目右键->bu ...

  7. 最简单ajax,$.post()用法

    最简单的ajax,$.post()用法 $.post("action.php",{'email':$('#email').val(),'address':$('#address') ...

  8. Java 发送Get和Post请求

    package com.htpt.superviseServices.dm.util; import java.io.BufferedReader; import java.io.IOExceptio ...

  9. 基于Jenkins+Gitlab的自动化部署实战

    故事背景 一个中小型企业,是典型的互联网公司,当初期的时候可能运维只能标配到2~3人,此时随着公司的发展,项目会逐渐增多.前期部署项目可能都是手动的, 俗称“人肉部署”,这简直是无比的痛苦,不能忍受的 ...

  10. css 内容超出宽度自动换行

    1. word-break:break-all;只对英文起作用,以字母作为换行依据2. word-wrap:break-word; 只对英文起作用,以单词作为换行依据 PS:要设定宽度!