* <p>
* OSOA specification doesn't have such requirement.
*/
@Test
public void ASM60001_p() throws Exception {
SCADomain domain = SCADomain.newInstance(LOCAL_DOMAIN_URI, "/", "compositeb.composite", "compositec.composite");
BService bService = domain.getService(BService.class, "BComponent");
Assert.assertEquals("some b component value", bService.getSomeProperty());
CService cService = domain.getService(CService.class, "CComponent");
Assert.assertEquals("Some State", cService.getState());
domain.close();
domain = null;
}