コード例 #1
0
 public void Constructor_ThrowsInvalidEnumArgumentException(Assert.ThrowsDelegateWithReturn constructorDelegate)
 {
     Assert.Throws(typeof(InvalidEnumArgumentException), constructorDelegate);
 }
コード例 #2
0
 public void Method_ThrowsArgumentNullException(Assert.ThrowsDelegate constructorDelegate)
 {
     Assert.Throws(typeof(ArgumentNullException), constructorDelegate);
 }
コード例 #3
0
 public void Constructor_ThrowsArgumentNullException(Assert.ThrowsDelegateWithReturn constructorDelegate)
 {
     Assert.Throws(typeof(ArgumentNullException), constructorDelegate);
 }