Beispiel #1
0
 public void BeforeEach()
 {
     this.browserUtilityMock =
         new Mock<IBrowserUtility>();
     this.resultService =
         new ResultServiceMock();
     this.crawlerService =
         new CrawlerService(
             this.resultService,
             this.browserUtilityMock.Object);
 }
Beispiel #2
0
 public void AfterEach()
 {
     this.resultService = null;
     this.crawlerService = null;
 }