-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isEqualTo(null) should be possible #21
Comments
An another example that can use this feature:
|
The equality of null=null is not satisfied because of NOT_IDENTIFIED type and on the isEqualTo methods there is a verification on valueType without the type NOT_IDENTIFIED.
|
Understood. It is not an urgent bug but it is more than an enhancement |
Just to discuss: I think that the behavior of isAfterOrEqualTo and isBeforeOrEqualTo (I didn't remember if there were more methods like these) are wrong too because it shoud be able to verify if null=null too. |
I started to work on this. |
Note that it will never be possible to use directly isEqualTo(null) because there is conflict : Java don't know which method is called. But it is possible to implement isEqualTo(Object) and after call it with isEqualTo((Object) null) |
Please, give me your test results but for me it is closed |
It's ok thx! |
In some cases we need to verify if the value on the table is the same value of the expected and the expected value can be null. Then isEqualTo(null) should work if the actual and the expected is null too.
example:
In this case I dont want to use isNull because I can modify the name attribute from null to a valid value later and my tests still passing.
The text was updated successfully, but these errors were encountered: