assertEquals("b", y.getB());
}
@Test
public void testReturnDomainObjectWithEmbedEmptyString() {
ExampleDomainObjectWithEmbed result = exampleSProcService.getEntityWithEmbedEmptyString();
assertNotNull(result);
assertEquals("x", result.getX());
ExampleDomainObject y = result.getY();
assertNotNull(y);
assertNull(y.getA());
assertEquals("", y.getB());
}