@Autowired
private SiteConfig siteConfig;
@Test
public void getQuestionsTagged() {
StackOverflowClient client = new StackOverflowClient(new CachedRestClient(), siteConfig.restTemplate());
List<Question> questions = client.searchForQuestionsTagged("spring-data-mongodb", "spring-data-neo4j");
Assert.assertThat(questions.get(0).tags, anyOf(hasItem("spring-data-mongodb"), hasItem("spring-data-neo4j")));
}