.replaceFirst("\\{appFolderUrl\\}", "dropbox")
.replaceFirst("\\{path\\}", "Getting%20Started.pdf")))
.andExpect(method(GET))
.andRespond(withResponse(jsonResource("/metadata"), h));
DropboxFile file = dropbox.getFile("Getting Started.pdf");
byte[] bytes = file.getBytes();
assertEquals(1234, bytes.length);
}