//create input
WebPageDataCreator.createWebPageData(inStore);
//run the job
WordCount wordCount = new WordCount(conf);
wordCount.wordCount(inStore, outStore);
//assert results
HashMap<String, Integer> actualCounts = new HashMap<String, Integer>();
for(String content : WebPageDataCreator.CONTENTS) {
for(String token:content.split(" ")) {