1 16 17 package org.springframework.aop.framework.autoproxy.metadata; 18 19 import java.io.IOException ; 20 21 import org.springframework.beans.factory.BeanFactory; 22 import org.springframework.context.support.ClassPathXmlApplicationContext; 23 24 29 public class DummyAttributesMetadataAutoProxyTests extends AbstractMetadataAutoProxyTests { 30 31 protected BeanFactory getBeanFactory() throws IOException { 32 return new ClassPathXmlApplicationContext( 34 new String [] { 35 "/org/springframework/aop/framework/autoproxy/metadata/dummyAttributes.xml", 36 "/org/springframework/aop/framework/autoproxy/metadata/enterpriseServices.xml"}); 37 } 38 39 } 40 | Popular Tags |