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