Posts

Showing posts with the label Nunit

[Code Snippet] Assert.Throws on Exception and Derived Type Nunit

 Code snippet for asserting throw in ArgumentException and its derived types(such as ArgumentNullException) in Nunit -  public void Test(){ Assert.Throws(Is.InstanceOf<ArgumentException>(), () =>{      //SUT code }); }