@Test
 public void testHashCodeDifferentTopRightCorner() {
   assertNotEquals(
       HASH_CODE_MUST_BE_DISTINCT,
       built.hashCode(),
       builder.setTopRightCorner('x').build().hashCode());
 }
 @Test
 public void testToStringDifferentTopRightCorner() {
   assertNotEquals(
       TO_STRING_MUST_BE_DISTINCT,
       built.toString(),
       builder.setTopRightCorner('x').build().toString());
 }
 @Test
 public void testNotEqualToDifferentTopRightCorner() {
   assertNotEquals(
       NOT_EQUAL_TO_INSTANCE_WITH_DIFFERENT_VALUES, built, builder.setTopRightCorner('x').build());
 }