}
@Test
public void getConfiguration_fromComponent() {
// parent configuration
WebxConfiguration parentConfiguration = (WebxConfiguration) components.getParentApplicationContext().getBean(
"webxConfiguration");
assertNotNull(parentConfiguration);
// component's configureation
WebxConfiguration configuration = components.getComponent("app1").getWebxConfiguration();
assertNotSame(parentConfiguration, configuration);
assertSame(parentConfiguration, getFieldValue(configuration, "parent", WebxConfiguration.class));
}