[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
});
}
Comments
Post a Comment