Package sagan.support.cache

Examples of sagan.support.cache.CachedRestClient


    @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")));
    }
View Full Code Here

TOP

Related Classes of sagan.support.cache.CachedRestClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.