📜  nunit 使用带有 throws 的异步方法 - 任何代码示例
📅  最后修改于: 2022-03-11 14:55:56.149000             🧑  作者: Mango
代码示例1
[Test]
public void Tests()
{
// Using a method as a delegate
Assert.ThrowsAsync(async () => await MethodThatThrows());
}