我是单元测试的新手,我不知道如何测试私有方法?
有什么方法可以测试私有方法?
我正在使用MSTest框架。
私有方法代码:
private int IncreasePoints(int userPoints)
{
if (userPoints > 0 && userPoints < 50)
userPoints += 0;
else if (userPoints >= 50 && userPoints < 100)
userPoints += 10;
else if (userPoints == 100)
userPoints += 15;
else if (userPoints > 100)
userPoints += 25;
else
userPoints += 0;
return userPoints;
}