public ExecutionContext(BenchmarkSuiteInstance suite,
                         ResultAggregator aggregator, ExecutionStrategy strategy)
 {
     _strategy   = strategy;
     _aggregator = aggregator;
     _suite      = suite;
 }
 public ProportionalExecutionStrategy(ConfigurationManager configuration,
                                      ResultsManager results, ExecutionManager execution,
                                      List <BenchmarkInstance> benchmarks)
     : base(configuration, results, execution, benchmarks)
 {
     _aggregator = new ResultAggregator(results, benchmarks);
 }