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
These optional parameters of assertEquals() and assertNotEquals() should be removed:
assertEquals()
assertNotEquals()
$delta
assertEqualsWithDelta()
assertNotEqualsWithDelta()
$maxDepth
$canonicalize
assertEqualsCanonicalizing()
assertNotEqualsCanonicalizing()
$ignoreCase
assertEqualsIgnoringCase()
assertNotEqualsIgnoringCase()
The text was updated successfully, but these errors were encountered:
sebastianbergmann#3342 Remove optional parameters of assertEquals() a…
ae3bfa3
…nd assertNotEquals()
4eb18b6
…nd assertNotEquals() sebastianbergmann#3339 Remove assertions (and helper methods) that operate on (non-public) attributes
867c065
Closes #3342
008efa2
e470a3a
sebastianbergmann
No branches or pull requests
These optional parameters of
assertEquals()
andassertNotEquals()
should be removed:$delta
(useassertEqualsWithDelta()
orassertNotEqualsWithDelta()
from Specializations of assertEquals() and assertNotEquals() #3340 instead)$maxDepth
(respective functionality was removed)$canonicalize
(useassertEqualsCanonicalizing()
orassertNotEqualsCanonicalizing()
from Specializations of assertEquals() and assertNotEquals() #3340 instead)$ignoreCase
(useassertEqualsIgnoringCase()
orassertNotEqualsIgnoringCase()
from Specializations of assertEquals() and assertNotEquals() #3340 instead)The text was updated successfully, but these errors were encountered: