示例#1
0
 public void FirstWithPredicateEmptySourceInvalidOperation()
 {
     Assert.Throws <InvalidOperationException>(() => EmptyData.First(x => true)).WithMessageNoMatchingElement();
 }
示例#2
0
 public void FirstEmptySourceInvalidOperation()
 {
     Assert.Throws <InvalidOperationException>(() => EmptyData.First()).WithMessageNoElements();
 }