JBuilder2005單元測試之業務類介紹
JBuilder2005單元測試之業務類介紹[@more@] 為了便於講解,擬透過兩個簡單的業務類引出測試用例,一個是分段函式類,另一個是字串處理類,在這節裡我們先來熟悉這兩個業務類。
分段函式類
分段函式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行)。
分段函式類
分段函式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行)。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10901326/viewspace-965675/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Go 單元測試基本介紹Go
- 前端單元測試總結及測試工具介紹前端
- Django筆記三十六之單元測試彙總介紹Django筆記
- 測試 之Java單元測試、Android單元測試JavaAndroid
- SAP CDS view單元測試框架Test Double介紹View框架
- 如何寫好測試用例以及go單元測試工具testify簡單介紹Go
- 簡單介紹Angular單元測試之事件觸發的實現Angular事件
- Go 單元測試之mock介面測試GoMock
- Java單元測試之junitJava
- 單元測試:單元測試中的mockMock
- Java單元測試神器之MockitoJavaMockito
- Java單元測試技巧之PowerMockJavaMock
- 測試開發之單元測試-禪道結合ZTF驅動單元測試執行
- Go 單元測試之HTTP請求與API測試GoHTTPAPI
- Go 單元測試之Mysql資料庫整合測試GoMySql資料庫
- 開發必備之單元測試
- Python 的單元測試之 unittestPython
- 混沌測試介紹
- .net持續整合單元測試篇之單元測試簡介以及在visual studio中配置Nunit使用環境
- [iOS單元測試系列]單元測試編碼規範iOS
- Flutter 單元測試Flutter
- Go單元測試Go
- 單元測試工具
- iOS 單元測試iOS
- 前端單元測試前端
- golang 單元測試Golang
- PHP 單元測試PHP
- phpunit單元測試PHP
- JUnit單元測試
- unittest單元測試
- Junit 單元測試.
- 單元測試真
- Java單元測試之JUnit 5快速上手Java
- 前端單元測試之Karma環境搭建前端
- ASP.NET 系列:單元測試之SmtpClientASP.NETclient
- ASP.NET 系列:單元測試之StructureMapASP.NETStructREM
- 單元測試之模擬物件技術物件
- 元學習簡單介紹