当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:16:00  来源:本站整理

JBuilder 2005单元测试之业务类介绍[Java编程]

赞助商链接



  本文“JBuilder 2005单元测试之业务类介绍[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

为了便于讲授,拟通过两个简单的业务类引出测试用例,一个是分段函数类,另一个是字符串处理类,在这节里我们先来熟习这两个业务类.

分段函数类

分段函数Subsection类有两个函数,sign()是一个标记函数,而getValue(int d)函数功效以下:

当d < -2时,值为abs(d);

当-2≤d<2 且d!=0时,值为d*d;

当d=0时,值为100;

当2≤d时,值为d*d*d.

其代码以下图所示:

代码清单 错误!文档中没有指定款式的文字.分段函数

1. package chapter25;
2.
3. public class Subsection
4. {
5.  public static int getValue(int d) {
6.   if (d == 0) {
7.    return 100;
8.   } else if (d < -2) {
9.    return Math.abs(d);
10.  } else if (d >= -2 && d < 2) {
11.   return d * d;
12.  } else { //d >= 2
13.   // if (d > 32) {
14.   // return Integer.MAX_VALUE;
15.   // }
16.   return d * d * d;
17.  }
18. }
19.
20. public static int sign(double d) {
21.  if (d < 0) {
22.   return -1;
23.  } else if (d > 0) {
24.   return 1;
25.  } else {
26.   return 0;
27.  }
28. }
29. }

在getValue()办法中,当d>32时,d*d*d的值将超越int数据范例的最大值(32768),所以当d>32时,理应做特别的处理,这里我们特地将这个特别处理的代码注释掉(第13~15行),模拟一个潜在的Bug.

字符串处理类

由于尺度JDK中所供应的String类对字符串操作功效有限,而字符串处理是非常常用的操作,所以普通的系统都供应了一个自己的字符串处理类.下面就是一个字符串处理类,为了简单,我们仅供应了一个将字符串转换成数组的办法string2Array(),其代码以下所示:

代码清单 错误!文档中没有指定款式的文字.字符串处理类

1. package chapter25;
2. public class StringUtils
3. {
4.  public static String[] string2Array(String str, char splitChar, boolean trim) {
5.   if (str == null) {
6.    return null;
7.   } else {
8.    String tempStr = str;
9.    int arraySize = 0; //数组大小
10.   String[] resultArr = null;
11.   if (trim) { //假如需求删除头尾多余的脱离符
12.    tempStr = trim(str, splitChar);
13.   }
14.   arraySize = getCharCount(tempStr, splitChar) + 1;
15.   resultArr = new String[arraySize];
16.   int fromIndex = 0, endIndex = 0;
17.   for (int i = 0; i < resultArr.length; i++) {
18.    endIndex = tempStr.indexOf(splitChar, fromIndex);
19.    if (endIndex == -1) {
20.     resultArr[i] = tempStr.substring(fromIndex);
21.     break;
22.    }
23.    resultArr[i] = tempStr.substring(fromIndex, endIndex);
24.    fromIndex = endIndex + 1;
25.   }
26.   return resultArr;
27.  }
28. }
29.
30.  //将字符串前面和背面的多余脱离符去撤除.
31. private static String trim(String str, char splitChar) {
32.  int beginIndex = 0, endIndex = str.length();
33.  for (int i = 0; i < str.length(); i++) {
34.   if (str.charAt(i) != splitChar) {
35.    beginIndex = i;
36.    break;
37.   }
38.  }
39.  for (int i = str.length(); i > 0; i--) {
40.   if (str.charAt(i - 1) != splitChar) {
41.    endIndex = i;
42.    break;
43.   }
44.  }
45.  return str.substring(beginIndex, endIndex);
46. }
47.
48. //计算字符串中脱离符中个数
49. private static int getCharCount(String str, char splitChar) {
50.  int count = 0;
51.  for (int i = 0; i < str.length(); i++) {
52.   if (str.charAt(i) == splitChar) {
53.    count++;
54.   }
55.  }
56.  return count;
57. }
58. }

除对外API string2Array()外,类中还包含了两个支持办法.trim()负责将字符前导和尾部的多余脱离符删撤除(第31~46行);而getCharCount()办法获得字符中包含脱离符的数目,以得到目标字符串数组的大小(第49~57行).


  以上是“JBuilder 2005单元测试之业务类介绍[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • JBuilder 2005单元测试之成立测试用例
  • JBuilder 2005单元测试之捆绑多个用例
  • JBuilder 2005单元测试之业务类介绍
  • JBuilder 2005单元测试之慨述
  • JBuilder 2005单元测试体验之测试配置
  • JBuilder 2005单元测试之JUnit框架
  • <b>JBuilder 2005单元测试之成立测试固件</b>
  • JBuilder和JDeveloper的简单比较
  • 操作JBuilder2005开辟Web操纵程序
  • JBuilder 2005开辟Applet游戏全接触
  • 用JBuilderX开辟WEB操纵程序
  • JBuilder 2005 Struts深度体验之变革
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .