public void FirstWithPredicateEmptySourceInvalidOperation() { Assert.Throws <InvalidOperationException>(() => EmptyData.First(x => true)).WithMessageNoMatchingElement(); }
public void FirstEmptySourceInvalidOperation() { Assert.Throws <InvalidOperationException>(() => EmptyData.First()).WithMessageNoElements(); }