You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, the Equals() method of the ICheck<T> instances is a real fluent check method (instead of the default object.Equals() one).
New extensible syntax for Check.That(IEnumerable xxx).Contains(...) that permits to add suffixes narrowing the conditions (e.g.: Check.That(IEnumerable xxx).Contains(...).InThatOrder()). Possible suffixes are (Only, Once or InThatOrder)
Adds check methods for IDictionary
Adds more check methods to the IEnumerable (e.g. IsNullOrEmpty)
Changes:
New error message structure that clearly states what is wrong.
Renames the ContainsOnly() method to IsOnlyMadeOf().
Replaces IFluentAssertion by ICheck; and IChainableFluentAssertion by ICheckLink so that it improves the IntelliSense experience.