Package org.encuestame.utils.web.stats

Examples of org.encuestame.utils.web.stats.HashTagDetailStats


    public void testGetHashTagUsedOnItemsVotedbyAllPeriod()
            throws NoSuchAlgorithmException, UnsupportedEncodingException {
        final HashTag tag = createHashTag("season");
        this.createTweetPollsItemsVote(tag);
        this.createPollsItemsVote(tag);
        HashTagDetailStats detail = statisticsService
                .getHashTagUsedOnItemsVoted(tag.getHashTag(), 0, 100, request,
                        SearchPeriods.ALLTIME);
//    Assert.assertEquals("Should be equals", 91, detail.getValue()
//        .intValue());
    }
View Full Code Here


    public void testGetHashTagUsedOnItemsVotedbyTwentyFourHoursPeriod()
            throws NoSuchAlgorithmException, UnsupportedEncodingException {
        final HashTag tag = createHashTag("season");
        this.createTweetPollsItemsVote(tag);
        this.createPollsItemsVote(tag);
        HashTagDetailStats detail = statisticsService
                .getHashTagUsedOnItemsVoted(tag.getHashTag(), 0, 100, request,
                        SearchPeriods.TWENTYFOURHOURS);
//        Assert.assertEquals("Should be equals", 19, detail.getValue().intValue());
    }
View Full Code Here

TOP

Related Classes of org.encuestame.utils.web.stats.HashTagDetailStats

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.