// Story 2 - Asserting inverse equality - Part One
 @Test
 public void shouldReturnTrueForInverse() throws Exception {
   CustomAssert customAssert = new CustomAssert();
   CustomIs inverseCustomIs = CustomIs.not();
   assertTrue(inverseCustomIs.isInverse());
 }