SelfAssertion
This assertion will always fail or succeed.

Severity
ERROR

Alternate names: TruthSelfEquals

The problem

If a test subject and the argument to isEqualTo are the same instance (e.g. assertThat(x).isEqualTo(x)), then the assertion will always pass. Truth implements isEqualTo using [Objects#equal] , which tests its arguments for reference equality and returns true without calling equals() if both arguments are the same instance.

To test the implementation of an equals method, use Guava’s EqualsTester.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("SelfAssertion") to the enclosing element.