@Test
 public void testHashCodeDifferentBottomIntersect() {
   assertNotEquals(
       HASH_CODE_MUST_BE_DISTINCT,
       built.hashCode(),
       builder.setBottomIntersect('x').build().hashCode());
 }
 @Test
 public void testToStringDifferentBottomIntersect() {
   assertNotEquals(
       TO_STRING_MUST_BE_DISTINCT,
       built.toString(),
       builder.setBottomIntersect('x').build().toString());
 }
 @Test
 public void testNotEqualToDifferentBottomIntersect() {
   assertNotEquals(
       NOT_EQUAL_TO_INSTANCE_WITH_DIFFERENT_VALUES,
       built,
       builder.setBottomIntersect('x').build());
 }