@Test
 public void accessAndUpdateRemoteDbWithSlashInName() throws Exception {
   // do a little set up for this specific test
   CouchConfig config = super.getCouchConfig("myslash%2Fencoded_db");
   remoteDb =
       new CouchClientWrapper(
           config.getRootUri(), config.getRequestInterceptors(), config.getResponseInterceptors());
   CouchClientWrapperDbUtils.deleteDbQuietly(remoteDb);
   remoteDb.createDatabase();
   Bar bar1 = new Bar();
   Response res1 = remoteDb.create(bar1);
   Assert.assertNotNull(res1);
   Assert.assertTrue(res1.getOk());
 }