public void SetUp()
 {
     _fakeScheduler = new Mock<IScheduler>();
     _crawlContext = new CrawlContext();
     _crawlContext.CrawlConfiguration = new CrawlConfiguration { UserAgentString = "aaa" };
     _crawlContext.Scheduler = _fakeScheduler.Object;
     _unitUnderTest = new CrawlDecisionMaker();
 }
 public void SetUp()
 {
     _crawlContext = new CrawlContext();
     _crawlContext.CrawlConfiguration = new CrawlConfiguration { UserAgentString = "aaa" };
     _unitUnderTest = new CrawlDecisionMaker();
 }