コード例 #1
0
 public void ExportTypeSet_WithInspector_Null_Throws(ExportTypeSetConfiguration configuration)
 {
     Assert.Throws <ArgumentNullException>(() => configuration.WithInspector(null));
 }
コード例 #2
0
 public void ExportTypeSet_Where_Null_Throws(ExportTypeSetConfiguration configuration)
 {
     Assert.Throws <ArgumentNullException>(() => configuration.Where(null));
 }
コード例 #3
0
 public void ExportTypeSet_ByKeyed_Null_Throws(ExportTypeSetConfiguration configuration)
 {
     Assert.Throws <ArgumentNullException>(() => configuration.ByKeyedTypes(null));
 }
コード例 #4
0
 public void ExportTypeSet_UsingLifestyle_Null_Throws(ExportTypeSetConfiguration configuration)
 {
     Assert.Throws <ArgumentNullException>(() => configuration.UsingLifestyle((Func <Type, ICompiledLifestyle>)null));
 }
コード例 #5
0
 public void ExportTypeSet_BasedOn_Null_Throws(ExportTypeSetConfiguration configuration)
 {
     Assert.Throws <ArgumentNullException>(() => configuration.BasedOn(null));
 }