public class TestGenericInternalQueryBuilder {
@Test
public void testSimpleSetter() throws Exception {
PersonDTO dto = new PersonDTO();
GenericInternalQueryBuilder.setMappingValue(dto, new PathItem(String.class, null, "name"), "the value");
assertEquals(dto.getName(), "the value");
}