Releases: jmp/AssertThat
Releases · jmp/AssertThat
AssertThat 0.4.0
- Added Swift documentation for
assertThat
andAssertion
- Removed redundant
contains
anddoesNotContain
fromStringProtocol
(these are already implemented forSequence
) - Removed redundant
isEmpty
andisNotEmpty
fromStringProtocol
(these are already implemented forCollection
) - Changed closure and error assertions to utilize
XCTAssertThrowsError
andXCTAssertNoThrow
- Moved
isZero
andisNotZero
fromNumeric
to the more genericAdditiveArithmetic
- Moved
startsWith
,doesNotStartWith
,endsWith
, anddoesNotEndWith
fromStringProtocol
to the more genericSequence
AssertThat 0.3.0
- Removed explicit test discovery on Linux
- Added
isOne
andisNotOne
forNumeric
- Added
contains
anddoesNotContain
forSequence
- Added assertions for
Collection
- Various internal code improvements
AssertThat 0.2.0
- The library now uses test discovery on Linux to simplify tests
- Simplified
Assertion
to have only a single stored property:subject
AssertThat 0.1.0
- Initial release