我正在使用 NUnit 编写单元测试用例。在测试这个属性时,我得到了 getter 的覆盖率,而不是 setter 的覆盖率。为什么?
private string name = null;
public string Name
{
get { return this.name; }
set
{
if (!String.IsNullOrEmpty(value) && value.StartsWith("@"))
{
name = value.Remove(0, 1);
}
else
{
name = value;
}
}
}
单元测试:
[Test]
public void TestNameHaveValue()
{
classobject.Name = "@test";
//Assert
}