Пример #1
0
 public StateTestsRunner(ITestSourceLoader testsSource, WhenTrace whenTrace, bool traceMemory, bool traceStack)
 {
     _testsSource = testsSource ?? throw new ArgumentNullException(nameof(testsSource));
     _whenTrace   = whenTrace;
     _traceMemory = traceMemory;
     _traceStack  = traceStack;
     Setup(null);
 }
 public BlockchainTestsBugHunter(ITestSourceLoader testsSource)
 {
     _testsSource   = testsSource ?? throw new ArgumentNullException(nameof(testsSource));
     _defaultColour = Console.ForegroundColor;
 }
Пример #3
0
 public PerfStateTest(ITestSourceLoader testsSource)
 {
     _testsSource = testsSource ?? throw new ArgumentNullException(nameof(testsSource));
 }