@Test
 public void should_return_this() {
   ShortAssert returned = assertions.isGreaterThan((short) 6);
   assertSame(assertions, returned);
 }
 @Test
 public void should_verify_that_actual_is_greater_than_expected() {
   assertions.isGreaterThan((short) 6);
   verify(shorts).assertGreaterThan(assertions.info, assertions.actual, (short) 6);
 }