// /////////////////////////////////////////////////////////////////////
String response = ninjaTestBrowser.makeJsonRequest(getServerAddress()
+ "api/bob@gmail.com/articles.json");
System.out.println("response: " + response);
ArticlesDto articlesDto = getGsonWithLongToDateParsing().fromJson(
response, ArticlesDto.class);
assertEquals(3, articlesDto.articles.size());
// /////////////////////////////////////////////////////////////////////