public boolean matches(Object item) {
return hamcrestMatcher.matches(item);
}
public void describeTo(mockit.external.hamcrest.Description description) {
Description strDescription = new StringDescription();
hamcrestMatcher.describeTo(strDescription);
description.appendText(strDescription.toString());
}