throws EnMeSearchException, EnMeNoResultsFoundException {
final Calendar currentDate = Calendar.getInstance();
final List<HashTagListGraphData> list = getStatisticsService().getTotalUsagebyHashtagAndDateRangeListGraph( this.initHashTag.getHashTag(),
SearchPeriods.ONEYEAR, request);
Assert.assertEquals("Should be equals", 1, list.size());
final Question question = createQuestion("What is your favorite season?", "");
final TweetPoll tp = createPublishedTweetPoll(question, this.secondary);
tp.getHashTags().add(this.initHashTag);
getTweetPoll().saveOrUpdate(tp);
// Item 2
final Question question2 = createQuestion("What is your favorite holidays?", "");
final TweetPoll tp2 = createPublishedTweetPoll(question2, this.secondary);
tp2.getHashTags().add(this.initHashTag);
getTweetPoll().saveOrUpdate(tp2);
final List<HashTagListGraphData> list2 = getStatisticsService().getTotalUsagebyHashtagAndDateRangeListGraph( this.initHashTag.getHashTag(),
SearchPeriods.ONEYEAR, request);