Run() static private method

static private Run ( TestInfo testInfo, PerfTestConfiguration configuration, bool parallel = false ) : IObservable
testInfo NPerf.Core.Info.TestInfo
configuration PerfTestConfiguration
parallel bool
return IObservable
コード例 #1
0
ファイル: PerfLab.cs プロジェクト: ovidiomanteiga/NPerf
 public IObservable <PerfTestResult> Run(int start, int step, int end, PerfTestConfiguration configuration, bool parallel = false)
 {
     return(this.testSuites.ToObservable().SelectMany(suite => TestSuiteManager.Run(suite, start, step, end, configuration, parallel)));
 }
コード例 #2
0
ファイル: PerfLab.cs プロジェクト: ovidiomanteiga/NPerf
 public IObservable <PerfTestResult> Run(Guid[] tests, int start, int step, int end, PerfTestConfiguration configuration, bool parallel = false)
 {
     return(TestSuiteManager.Run(tests.Select(x => this.Tests[x]).ToArray(), start, step, end, configuration, parallel));
 }