码迷,mamicode.com
首页 > 其他好文 > 详细

软件测试作业2:fault,error,failure 的区别

时间:2018-03-11 19:23:01      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:find   point   dex   res   之间   执行   nts   int   第一个   

定义:

Software Fault : A static defect in the software  可能导致系统或功能失效的异常条件,可译为“故障”。

Software Error : An incorrect internal state that is the manifestation of some fault     计算、观察或测量值或条件,与真实、规定或理论上正确的值或条件之间的差异,可译为“错误”。Error是能够导致系统出现Failure的系统内部状态。

Software Failure : External, incorrect behavior with respect to the requirements or other description of the expected behavior   当一个系统不能执行所要求的功能时,即为Failure,可译为“失效”。

 

题目1

public int findLast (int[] x, int y) {
//Effects: If x==null throw
NullPointerException
// else return the index of the last element
// in x that equals y.
// If no such element exists, return -1
for (int i=x.length-1; i > 0; i--)
{
if (x[i] == y)
{
return i;
}
}
return -1;
}
// test: x=[2, 3, 5]; y = 2
// Expected = 0

题目2

public static int lastZero (int[] x) {
//Effects: if x==null throw NullPointerException
// else return the index of the LAST 0 in x.
// Return -1 if 0 does not occur in x
for (int i = 0; i < x.length; i++)
{
if (x[i] == 0)
{
return i;
}
} return -1;
}
// test: x=[0, 1, 0]
// Expected = 2

 

 

题目1:

1、 错误是循环条件出错,修改为for (int i=x.length-1; i>=0; i--)

2、 没有执行fault的用例:x=null  y=1

3、 执行了fault,没造成error的用例:x=[2, 3, 5]  y=5

预期索引为2;实际为2.

4、 造成了error,但程序没有失败(failure)的用例:x=[1]  y=1

当x数组只有一个元素时,不进入循环,返回-1;当x中元素等于y时,应返回0,故error,程序没有失败。

 

题目2:

1、 错误是循环条件出错,返回第一个o的索引,不是最后一个0的索引。修改为for (int i=x.length-1; i >= 0; i--)

2、 没有执行fault的用例:x=null

3、 执行了fault,没造成error的用例:x=[0, 2, 3]

只要0出现一次或者零次,不会造成error

4、 造成了error,但程序没有失败(failure)的用例:x=[0, 2, 0]

结果出错,但程序不会失败。

 

软件测试作业2:fault,error,failure 的区别

标签:find   point   dex   res   之间   执行   nts   int   第一个   

原文地址:https://www.cnblogs.com/wll560/p/8545140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!