我有一个“患者信息”类,其中包括变量,例如名字、姓氏、年龄、体重、身高、性别……。这些变量中的每一个也都有获取和设置方法。另一类“程序有以下方法
public double weightCalc(patientinfo p3)
{
if (p3.getGender() == "male" || (p3.getGender() == "MALE")
{
//Calculate ideal body weight
idealWeight = (50 + (2.3 * (p3.getheight() - 60)));
}
else
{
//Calculate ideal body weight
idealWeight = (45.5 + (2.3 * (p3.getheight() - 60)));
}
return idealWeight;
我必须为此方法为 NUnit 准备一个测试用例。作为我的基础学习者,期待有关如何在测试课中传递 height 或 getheight 值的想法