Ejemplo n.º 1
0
 public void LastWithPredicateEmptySourceInvalidOperation()
 {
     Assert.Throws <InvalidOperationException>(() => EmptyData.Last(x => true)).WithMessageNoMatchingElement();
 }
Ejemplo n.º 2
0
 public void LastEmptySourceInvalidOperation()
 {
     Assert.Throws <InvalidOperationException>(() => EmptyData.Last()).WithMessageNoElements();
 }