.andExpect(status().isOk())
.andExpect(content().contentType("text/html;charset=UTF-8"))
.andReturn();
// then
BooksPage booksPage = new BooksPage(response);
booksPage.containsListOfBooks(Arrays.asList(
new Book(1, "Xenophon's imperial fiction : on the education of Cyrus", "James Tatum", "0691067570", "1989"),
new Book(2, "You are here : personal geographies and other maps of the imagination", "Katharine A. Harmon", "1568984308", "2004"),
new Book(3, "You just don't understand : women and men in conversation", "Deborah Tannen", "0345372050", "1990")
));
proxy.verify(