ensureThat(new Long((long)1), matchesIntTypeValue);
}
public void shouldCreateMatcherForPrimitiveCharType() throws Exception {
Matcher c = m.eq('c');
Ensure.that("matcher should match Character 'c'", c.matches(new Character('c')));
}
public void shouldCreateMatcherForPrimitiveLongType() throws Exception {
Matcher c = m.eq(1l);
Ensure.that(c.matches(new Long(1)));