当前位置:网站首页>Detailed explanation of cause and effect diagram of test case design method
Detailed explanation of cause and effect diagram of test case design method
2022-08-03 07:32:00 【Program Yuanyuexia】
I. Overview of cause and effect diagrams
- The cause and effect diagram is to find out the cause (input condition) and effect (change of output or program state) from the requirements, by analyzing the relationship between input conditions (combination relationship, constraint relationship, etc.) and the relationship between input and outputThe relationship draws a cause-and-effect diagram, which is then converted into a decision table, so as to design the method of the test case.
- This method is mainly suitable for situations where there is a certain mutual restriction relationship between various input conditions or the output result depends on the combination of various input conditions
- Note: 1) The mutual restriction and combination relationship of all input and output conditions 2) The dependence of the output results on the input conditions.That is, what kind of input combination will produce what kind of output, that is, "causality"
Second, cause and effect diagram symbols and relationships
- The relationship between the condition and the result: the left node represents the input state as the cause, and the right node represents the output state as the result

- Condition to Condition Relationship

- Requirement case: When qq does automatic login, if automatic login is checked, then remember password must be checked.
Three, the analysis steps of cause and effect diagram
- Find all the causes, the cause is the input condition or the equivalence class of the input condition; find all the results, the result is the output result;
- Identify the relationship between all input conditions; clarify the relationship between all output results
- Find out which combination of input conditions produces which output, Draw a cause-and-effect diagram;
- Convert the cause and effect diagram into a decision table (decision table);
- Design test cases for the situation represented by each column in the decision table (decision table).
Four. Case combat
The system requirements of the automatic recharge software of the transportation card:
The system only accepts 50 yuan or 100 yuan banknotes, and one banknote can be used for one recharge. The recharge amount can only be 50 yuan or 100 yuan.
If you enter 50 yuan banknotes and choose to recharge 50 yuan, the recharge is completed.Rewind the card, prompting successful recharge;
If you enter 50 yuan bills and choose to recharge 100 yuan, it will prompt that the input amount is insufficient and return 50 yuan;
If you enter 100 yuan bills and choose to recharge 50 yuan, after the recharge is completed, the card will be returned, and the recharge will be prompted.If successful, and change 50 yuan;
If you input 100 yuan banknotes and choose to recharge 100 yuan, after the recharge is completed, the card will be returned, and the recharge is successful;
If the recharge button is not selected within the specified time after inputting the banknotes, the input will be returned.If you choose the recharge button without inputting the banknotes, it will prompt an error
- Step 1: Find All Conditions and Results

- Step 2: Draw a cause and effect diagram

- Step 3: Draw a decision table based on the cause and effect diagram

- Step 4: Write a use case according to the judgment table, one use case for each column

Have you learned how to design test cases with cause-and-effect diagrams?
边栏推荐
猜你喜欢
随机推荐
nacos-2.0.3启动报错出现no datasource set的坑
Shell脚本之一键安装mysql
2022用户画像构建
word之图表目录中点号位置提升3磅
static数据成员
贷中存量客户的价值挖掘与分类实现,试试这一重要的场景模型
Pinned Articles-
El - table column filter functions, control columns show and hide (effect and easy to implement full marks)
MySQL必知必会
信息学奥赛一本通T1446:素数方阵
重量级大咖来袭:阿里云生命科学与智能计算峰会精彩内容剧透
Cesium loads offline maps and offline terrain
【RT_Thread学习笔记】---以太网LAN8720A Lwip ping 通网络
信息学奥赛一本通T1453:移动玩具
Oracle Rac 集群文件目录迁移
华为设备配置BFD状态与接口状态联动
Getting started with el-tabs (tab bar)
信息学奥赛一本通T1454:山峰和山谷
volatile
QT信号与槽









