我只是想知道以下代码中的法定覆盖/决策覆盖/条件覆盖范围之间的区别。
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);
}
P.S。任何if语句都没有大括号。
答案 0 :(得分:0)
不同的工具使用稍微不同的术语来解释这些数字。对于ex jacoco使用以下术语 http://www.eclemma.org/jacoco/trunk/doc/counters.html
如果您可以告诉我们您用于计算覆盖率的工具,可能会有所帮助。然后我们可以将它应用到您的代码