Exemplo n.º 1
0
        public virtual void before_each()
        {
            autoSubstitute = new AutoSubstitute();

            progressRecorder = autoSubstitute.Resolve <IProgressRecorder>();

            executedExampleMapper = autoSubstitute.Resolve <IExecutedExampleMapper>();

            reporter = autoSubstitute.Resolve <ExecutionReporter>();
        }
Exemplo n.º 2
0
 public ExecutionReporter(IProgressRecorder progressRecorder, IExecutedExampleMapper executedExampleMapper)
 {
     this.progressRecorder      = progressRecorder;
     this.executedExampleMapper = executedExampleMapper;
 }