-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
New features: | ||
* Now, the Equals() method of the ICheck<T> instances is a real fluent check method. | ||
* 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() | ||
* Renames the ContainsOnly() method to IsOnlyMadeOf(). | ||
* Replaces IFluentAssertion by ICheck; and IChainableFluentAssertion by ICheckLink so that it improves the IntelliSense experience. |