@Test
public void testSimpleTransformer() throws SQLException {
// test complex result
final ExampleDomainObjectWithSimpleTransformer transformed = exampleSProcService.testSimpleTransformer(
new ExampleDomainObjectWithSimpleTransformer("123", "hallo"));
assertEquals("123", transformed.getA());
assertEquals("hallo", transformed.getB());
}