示例#1
0
 public VisualAssertionsService(
     IRepository <Project> projectRepository,
     ITestRunnerAdapter testRunnerAdapter,
     bool processAsynchronously)
 {
     this.projectRepository = projectRepository;
     this.testRunnerAdapter = testRunnerAdapter;
     InitScreenshotProcessor(processAsynchronously);
 }
示例#2
0
 public VisualAssertionsService(IRepository <Project> projectRepository, ITestRunnerAdapter testRunnerAdapter)
 {
     this.projectRepository = projectRepository;
     this.testRunnerAdapter = testRunnerAdapter;
 }