assertThat(test.getUnbuildableTestComponent(), nullValue());
}
@Test
public void postConstructInvoked() {
ComponentWithRequiredAutoCreateChild test =
SeamAutowire.instance()
.autowire(ComponentWithRequiredAutoCreateChild.class);
assertThat(test.isPostConstructInvoked(), is(true));
}