/**//*
* Return the par for a given hole
*/
public int parForHole(int hole) ...{
return par[hole-1];
}
/**//*
* Return the par from hole 1 and up to a given hole
*/
public int parUpToHole(int hole) ...{
int sum = 0;
for ( int i = 0; i < hole; i++ ) ...{
sum += par[i];
}
return sum;
}
出于简单,没有在示例中引入方法调用错误检查(即在调用“getNumberOfHoles”方法前必须先调用“setPar”)。
对Course类的测试
通过调用Course类的方法,可以编写程序测试“parUpToHoles”方法是否能够得到预定的结果。我们假定球场为英格兰美丽、著名的“St. Andrews”:
Course c = new Course();
c.setName("St. Andrews");
文章来源于领测软件测试网 https://www.ltesting.net/