assertThat(hasSameNumberOfRowAs(sheetWithThreeRows).matches(sheetWithTwoRows), is(false));
}
@Test
public void description() {
Description description = new StringDescription();
hasSameNumberOfRowAs(sheetWithThreeRows).describeTo(description);
assertThat(description.toString(), is("<3> row(s) in sheet \"Sheet1\""));
}