Releases: CptWesley/AssertNet
Releases · CptWesley/AssertNet
1.2.0
1.1.2
1.0.0
- Added Moq package.
- Added more legible failure messages.
- Fixed
ThrowsException
always passing. - Added overloads to
IsInstanceOf
(and co.) which accepts a type object rather than using generics. - Changed
SameAs
to perform an equality check on value types. - Added overloads to
Contains
(and co.) which takes anIEnumerable<T>
rather than a param list. - Added
Where(...)
andSelect(...)
method to the assertions made aboutIEnumerable
s which does the same as it's normal Linq counter part, but creates a new assertion instance. This is to reproduce AssertJ'sfilteredOn(...)
functionality.