1

我有这个方法,单元测试都涵盖了这个方法……除了一行,请参见示例。该行正在执行,我可以通过调试和单元测试来验证。

decimal? balance = null;
//other code
else
{
   MyClass classBalance = _repository.GetMyClass();
   if (classBalance != null)
   {
        balance = classBalance.Dr- classBalance.Cr; //This line is yellow/partially covered, the rest is all covered.
   }
 }
4

1 回答 1

0

正如@Jon Skeet 建议的那样:

我添加了两个测试,1 表示如果 Cr 为空,1 表示如果 Dr 为空,并且修复了它

于 2013-10-21T13:28:11.527 回答