为什么这个 NUnit 测试没有捕获我的异常?

Why isn't this NUnit Test Catching My Exception?

我有一个简单的 NUnit 测试:

[Test]
public void Invalid_ID_throws_an_exception()
{
   var zero = 0;
   var negativeNumber = -9;
   Assert.Throws<ArgumentOutOfRangeException>(() => edsp.PersonInfoById(zero));
   Assert.Throws<ArgumentOutOfRangeException>(() => edsp.PersonInfoById(negativeNumber));
}

和测试方法:

public IEnumerable<PersonInfo> PersonInfoById(int id)
{
   if (id <= 0) 
     throw new ArgumentOutOfRangeException(nameof(id), "ID must be greater than zero");

   yield return new PersonInfo();
}

...但第一个断言测试失败,因为结果是 null,而不是预期的 ArgumentOutOfRangeException:

 Message: 
      Expected: <System.ArgumentOutOfRangeException>
      But was:  null

我做错了什么?

编辑:另外,出于某种原因,我的调试器没有进入我测试过的方法 edsp.PersonInfoById - 尽管在调试时单击“进入”,但还是直接跳过它。

如果您通过对结果调用 .ToList() 强制枚举,则测试通过。

例如:

[Test]
public void Invalid_ID_throws_an_exception()
{
   var zero = 0;
   var negativeNumber = -9;
   Assert.Throws<ArgumentOutOfRangeException>(() => edsp.PersonInfoById(zero).ToList());
   Assert.Throws<ArgumentOutOfRangeException>(() => edsp.PersonInfoById(negativeNumber).ToList());
}