コード例 #1
0
ファイル: Runner.cs プロジェクト: marczinusd/hestia
 public Runner(IDiskIOWrapper ioWrapper,
               IPathValidator pathValidator,
               IRepositorySnapshotBuilderWrapper builder,
               IStatsEnricher statsEnricher,
               ICoverageReportConverter converter,
               ILogger log,
               ISnapshotPersistence persistence,
               IProgressBarFactory progressBarFactory,
               ICommandLineExecutor executor,
               ISpinner spinner)
 {
     _ioWrapper          = ioWrapper;
     _pathValidator      = pathValidator;
     _builder            = builder;
     _statsEnricher      = statsEnricher;
     _converter          = converter;
     _log                = log;
     _persistence        = persistence;
     _progressBarFactory = progressBarFactory;
     _executor           = executor;
     _spinner            = spinner;
 }
コード例 #2
0
 public RunnerBuilder With(IRepositorySnapshotBuilderWrapper snapshotBuilderWrapper)
 {
     _snapshotBuilderWrapper = snapshotBuilderWrapper;
     return(this);
 }