分支测试

分支测试


什么是分支测试?

分支覆盖是一种测试方法,旨在确保每个决策点的每个可能分支至少执行一次,从而确保执行所有可达代码。

也就是说,每个分支都采取不同的方式,真假。它有助于验证代码中的所有分支,确保没有分支导致应用程序的异常行为。

公式:

Branch Testing = (Number of decisions outcomes tested / Total Number of decision Outcomes) x 100 %

例子:

Read A
Read B 
IF A+B > 10 THEN 
  Print "A+B is Large" 
ENDIF 
If A > 5 THEN 
  Print "A Large"
ENDIF

上述逻辑可以用流程图表示为:

测试生命周期中的分支测试

结果 :

To calculate Branch  Coverage, one has to find out the minimum number of paths which will ensure that all the edges are covered. In this case there is no single path which will ensure coverage of  all the edges at once. The aim is to cover all possible true/false decisions.
(1) 1A-2C-3D-E-4G-5H
(2) 1A-2B-E-4F
Hence Branch Coverage is 2.

觉得文章有用?

点个广告表达一下你的爱意吧 !😁