final StringableEntityWithOwnProperties imp = (StringableEntityWithOwnProperties) empty;
assertEquals(IMPL_B_STRING, imp.getString());
}
private void cannotFindByMatchWithWrongValue() {
final StringableEntityWithOwnProperties match = new StringableEntityWithOwnProperties();
match.setInteger(0);
final List<Empty> matches = factory.allEmptyInterfacesThatMatch(match);
assertEquals(0, matches.size());
}