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

逻辑覆盖的应用

时间:2016-04-13 18:20:06      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

语句覆盖:abc  测试用例:X=1Y=2

分支覆盖:aeg  测试用例:X=4Y=0

import java.util.Scanner;

 

 

public class Da {

 

/**

 * @param args

 */

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner in = new Scanner(System.in); 

System.out.print("请输入x: ");   

int x = in.nextInt();

Scanner in1 = new Scanner(System.in); 

System.out.print("请输入y: ");   

int y = in1.nextInt();

Xiao xiao=new Xiao();

xiao.Way(x, y);

}

 

}

public class Xiao {

public void  Way(int x,int y){

if((x<4 || y>0)&&(y>1)){

y=y+1;

}

else {

if(x>=5){

x=x-y;

}

else{

x=x+y;

}

}

if((x<4 || y>0)&&(y<1 || y==1)){

}

System.out.println("x的值为:"+x);

System.out.println("y的值为:"+y);

}

}

技术分享技术分享

逻辑覆盖的应用

标签:

原文地址:http://www.cnblogs.com/lingxiaohai/p/5387927.html

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