new Benchmark("Spring: Create bean with bytype autowiring and Setter Dependency Injection", LOOP){
public void run() throws Exception {
factory.getBean("auto_soo");
}
}.start(true);
Soo soo = (Soo)factory.getBean("auto_soo");
assertNotNull(soo.getBar());
}