pc.registerPetiteCtorInjectionPoint("pojo", null, null);
pc.registerPetitePropertyInjectionPoint("pojo", "service", "someService");
pc.registerPetiteMethodInjectionPoint("pojo", "injectService", null, new String[] {"someService"});
pc.registerPetiteInitMethods("pojo", POST_INITIALIZE, "init");
PojoBean pojoBean = (PojoBean) pc.getBean("pojo");
SomeService ss = (SomeService) pc.getBean("someService");
assertNotNull(pojoBean);
assertNotNull(ss);
assertSame(ss, pojoBean.fservice);