use of com.cloudant.client.api.model.Params in project java-cloudant by cloudant.
the class DocumentsCRUDTest method findWithParams.
@Test
public void findWithParams() {
Response response = db.save(new Foo());
Foo foo = db.find(Foo.class, response.getId(), new Params().revsInfo());
assertNotNull(foo);
}
Aggregations