In other words, does assertEquals works with a class that overrides equals
In other words, does assertEquals works with a class that overrides equals
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the source code of the assertEquals method that you can find on the Junit GitHub Repo:
You can see that Junit is using the
.equals()method.Edit:
The code snippet is coming from a deprecated version of Junit.
You can read about the source of the ‘new’ Junit here. The idea is pretty much the same, the
.equals()method is also used.