@Test public void testHashCodeDifferentBottomRightCorner() { assertNotEquals( HASH_CODE_MUST_BE_DISTINCT, built.hashCode(), builder.setBottomRightCorner('x').build().hashCode()); }
@Test public void testToStringDifferentBottomRightCorner() { assertNotEquals( TO_STRING_MUST_BE_DISTINCT, built.toString(), builder.setBottomRightCorner('x').build().toString()); }
@Test public void testNotEqualToDifferentBottomRightCorner() { assertNotEquals( NOT_EQUAL_TO_INSTANCE_WITH_DIFFERENT_VALUES, built, builder.setBottomRightCorner('x').build()); }