We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider following example :
val value1 = ... val value2 = ... value1 should not be null. value2 should not be null.
It will fail with a message "Expected null not to match 'null'", which is not very helpful in determining whether value1 or value2 was null.
value1
value2
With macro, we can show a message like "Expected value1 to be different from 'null'" instead, and possibly with a matching line number as well.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider following example :
It will fail with a message "Expected null not to match 'null'", which is not very helpful in determining whether
value1
orvalue2
was null.With macro, we can show a message like "Expected value1 to be different from 'null'" instead, and possibly with a matching line number as well.
The text was updated successfully, but these errors were encountered: