use of io.crnk.client.internal.proxy.ClientProxyFactory in project crnk-framework by crnk-project.
the class ClientResourceUpsertTest method setup.
@Before
public void setup() {
boot = new CrnkBoot();
boot.addModule(new TestModule());
boot.boot();
PropertiesProvider propertiesProvider = new NullPropertiesProvider();
ClientProxyFactory proxyFactory = Mockito.mock(ClientProxyFactory.class);
upsert = new ClientResourceUpsert(boot.getResourceRegistry(), propertiesProvider, boot.getModuleRegistry().getTypeParser(), boot.getObjectMapper(), boot.getDocumentMapper(), proxyFactory);
}
Aggregations