Closed khaint2512 closed 5 years ago
Link repo : CountChar
private static int CountCharacters(String str) { int count = 0; if(str == "" || str == null) //Exceptions { return 0; } for(int i = 0; i < str.length(); i++) { if(!Character.isWhitespace(str.charAt(i))) { count++; }} return count; }
1-2
1-2-3-4-9-10
1-2-3-4-5-6-7-8-9-10
Path 1 : (str == "" || str == null) is True => return 0
Path 2 : (str == "" || str == null) is False i=0 => count
Bài tập kiểm thử whitebox cho chức năng CountChar
Họ và tên : Nguyễn Trọng Khải
MSSV : 16022406
Lớp : K61-CACLC2
Code CountChar
Link repo : CountChar
Đồ thị đường đi
Liệt kê đường đi
1-2
1-2-3-4-9-10
1-2-3-4-5-6-7-8-9-10
Điều kiện đường đi
Path 1 : (str == "" || str == null) is True => return 0
Path 2 : (str == "" || str == null) is False i=0 => count