首页 > 其他 > 详细

ST第二次作业,相关程序测试及测试用例

时间:2016-03-06 23:36:01      阅读:286      评论:0      收藏:0      [点我收藏+]

public static int findLast(int[]x,int y){

for(int i = x.length-1;i>0;i--){//i>=0

if(x[i] == y){

return i;

}

}

return -1;

}

a)Identify the fault

  For循环中的i>0应该为i>=0

b)If possible,identify a test case that does not execute the fault

  空数组,此时抛出空指针异常

c)If possible,identify a test case that execute the fault,but does not result  in an error state

    X=[2,3,2];y=2

d)If possible,identify a test case that result in an error,but not a failure.

  X=[2,3,4];y=2

public static int lastZero(int[]x){

for(int i = 0;i<x.length;i++){

if(x[i] == 0){

return i;

}

}

return -1;

}

a)Identify the fault

  For循环中应该为int i = x.length-1;i>-0;i--

b)If possible,identify a test case that does not execute the fault

  空数组,此时抛出空指针异常

c)If possible,identify a test case that execute the fault,but does not result  in an error state

    X=[2,3,0]

d)If possible,identify a test case that result in an error,but not a failure.

  X=[0,3,0]

ST第二次作业,相关程序测试及测试用例

原文:http://www.cnblogs.com/guoxinqi/p/5248847.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!