0

我只是想知道以下代码中的语句覆盖率/决策覆盖率/条件覆盖率之间有什么区别。

public static void main (String args [])

{    
char letter=' ';    
String word= "", vowels = "aeiouAEIOU";    
int i, numVowels= 0, numCons= 0, wordLength= 0;    
word = JOptionPane.showInputDialog("Input a word: " );    
if (word.length() > 10 || word.length() < 3)
   word = JOptionPane.showInputDialog("Input another word: ");    
wordLength= word.length();    
for (i = 0; i < wordLength; i++)    
   letter = word.charAt(i);    
   if (vowels.indexOf(letter) != -1)    
   numVowels = numVowels+1;    
numCons = wordLength-numVowels;    
JOptionPane.showMessageDialog(null, "Number of vowels: "+ numVowels);
JOptionPane.showMessageDialog(null, + " Consonants: " + numCons); 

}

PS 在任何 if 语句中都没有大括号。

4

1 回答 1

0

不同的工具使用稍微不同的术语来解释这些数字。对于前 jacoco,使用以下术语 http://www.eclemma.org/jacoco/trunk/doc/counters.html

如果您能告诉我们您用于计算覆盖率的工具,这可能会有所帮助。然后我们可以将其应用于您的代码

于 2014-05-01T05:24:26.913 回答