Searched refs:proxyFactory (Results 1 – 4 of 4) sorted by relevance
18 ProxyFactory proxyFactory = new ProxyFactory(); in testProxyFactoryWithNonPublicInterface() local19 proxyFactory.setInterfaces(new Class[]{Bear.class}); in testProxyFactoryWithNonPublicInterface()20 proxyFactory.createClass(); in testProxyFactoryWithNonPublicInterface()
82 ProxyFactory proxyFactory = new ProxyFactory(); in testJira127() local83 proxyFactory.setInterfaces(new Class[]{ JIRA127Sub.class }); in testJira127()84 proxyFactory.createClass(); in testJira127()95 ProxyFactory proxyFactory = new ProxyFactory(); in testDefaultMethod() local97 proxyFactory.setInterfaces(new Class[]{ TestDefaultI.class }); in testDefaultMethod()98 Class intf = proxyFactory.createClass(); in testDefaultMethod()
50 IProxyFactory<T> proxyFactory = createProxyFactory(toMock); in createMock() local51 return proxyFactory.createProxy(toMock, new ObjectMethodsFilter( in createMock()61 IProxyFactory<T> proxyFactory = createProxyFactory(toMock); in createMock() local62 return proxyFactory.createProxy(toMock, new ObjectMethodsFilter( in createMock()
461 ProxyFactory proxyFactory = new ProxyFactory(); in testJIRA127() local463 proxyFactory.setInterfaces(new Class[]{ Target127.Sub.class }); in testJIRA127()464 …Target127.Sub proxy = (Target127.Sub)proxyFactory.create(new Class[0], new Object[0], new MethodHa… in testJIRA127()