}
@Test
public void testProxyConfiguration() {
// interface
BookInterface proxy = JAXRSClientFactory.create("http://foo", BookInterface.class);
assertNotNull(WebClient.getConfig(proxy) != null);
// cglib
BookStore proxy2 = JAXRSClientFactory.create("http://foo", BookStore.class);
assertNotNull(WebClient.getConfig(proxy2) != null);
}