assertThat(actual).hasSize(2);
CompleteBean found1 = actual.get(0);
CompleteBean found2 = actual.get(1);
Factory factory1 = (Factory) found1;
@SuppressWarnings("unchecked")
ProxyInterceptor<CompleteBean> interceptor1 = (ProxyInterceptor<CompleteBean>) factory1.getCallback(0);
CompleteBean target1 = (CompleteBean) interceptor1.getTarget();
assertThat(target1.getLabel()).isNull();
assertThat(target1.getWelcomeTweet()).isNull();
Factory factory2 = (Factory) found1;
@SuppressWarnings("unchecked")
ProxyInterceptor<CompleteBean> interceptor2 = (ProxyInterceptor<CompleteBean>) factory2.getCallback(0);
CompleteBean target2 = (CompleteBean) interceptor2.getTarget();
assertThat(target2.getLabel()).isNull();
assertThat(target2.getWelcomeTweet()).isNull();