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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added
Add corresponds/doesNotCorrespond to compare values with a correspondence function. This is
useful when the value doesn't implement equals.
Changed
Changed the signature of isEqualTo from Any? to T. This should not effect any existing code
due to T being covariant. The one improvement this brings is that literal numbers can be inferred
to the correct type. Before this change assertThat(1L).isEqualTo(1) would fail, now it passes.