use of com.couchbase.client.test.Caves in project couchbase-jvm-clients by couchbase.
the class CavesKeyValueIntegrationTest method setGet.
@Caves("kv/crud/SetGet")
@Test
void setGet() {
JsonObject testDoc = JsonObject.create().put("foo", "bar");
collection.upsert("test-doc", testDoc);
GetResult result = collection.get("test-doc");
assertEquals(testDoc, result.contentAsObject());
}
Aggregations