dbCode));
final ResultSet result = stmt.executeQuery();
final TypeMapper<ClassWithGenderCode> mapper = TypeMapperFactory.createTypeMapper(ClassWithGenderCode.class);
int i = 0;
while (result.next()) {
final ClassWithGenderCode classWithGenderCode = mapper.mapRow(result, i++);
assertNotNull(classWithGenderCode);
assertEquals(genderCode, classWithGenderCode.getGenderCode());
}
}