Article
语句覆盖、判定覆盖、条件覆盖、路径覆盖的用例设计及Junit测试
00 分钟
2020-4-6
2023-5-21
type
status
category
date
slug
summary
tags
icon
Last edited time
May 21, 2023 07:57 AM

一、流程图

根据需求画出流程图
notion image
notion image

1、两个判定

2、两个条件

3、四条路径

4、五条语句

二、设计测试用例

1、语句覆盖

notion image

2、判定覆盖

notion image

3、条件覆盖

对于:

对于:
notion image

4、路径覆盖

notion image
notion image

三、编写Java类,调用该方法,并用Junit测试工具编写测试代码

测试类的编写

评论