Exemplo n.º 1
0
 public void WithNullIList_ThrowsArgumentNullException()
 {
     Assert.Throws <ArgumentNullException>(() =>
                                           NullStringList.AddWhen(true, AdditionalName));
 }
Exemplo n.º 2
0
 public void WithNullList_ThrowsArgumentNullException()
 {
     Assert.Throws <ArgumentNullException>(() =>
                                           NullStringList.AddRangeWhen(() => true, AddRange));
 }
Exemplo n.º 3
0
 public void WithMethodCallAndNullIList_ThrowsArgumentNullException()
 {
     Assert.Throws <ArgumentNullException>(() =>
                                           NullStringList.AddWhen(() => true, AddName));
 }