public void testAutoProxy() {
JarClassLoader jc = new JarClassLoader();
jc.add( "./target/test-jcl.jar" );
// Set default to cglib
ProxyProviderFactory.setDefaultProxyProvider( new CglibProxyProvider() );
// Create auto proxies
JclObjectFactory factory = JclObjectFactory.getInstance( true );
TestInterface test = (TestInterface) factory.create( jc, "org.xeustechnologies.jcl.test.Test" );