Beispiel #1
0
 public MainWindow(PerformanceTest <IdenticalTestSource> identicalModelsTest,
                   PerformanceTest <IgnoreTestSource> ignoreTest,
                   IPerformanceTestDataProvider <IdenticalTestSource> identicalModelsDataProvider,
                   IPerfomanceTestConfiguration configuration)
 {
     this.identicalModelsTest         = identicalModelsTest;
     this.ignoreTest                  = ignoreTest;
     this.identicalModelsDataProvider = identicalModelsDataProvider;
     this.configuration               = configuration;
     InitializeComponent();
 }
Beispiel #2
0
 public PerformanceTest(IEnumerable <IPerformanceTestParticipant <TModel> > participants, IPerformanceTestDataProvider <TModel> dataProvider)
 {
     this.dataProvider = dataProvider;
     this.participants = participants.ToArray();
 }