Esempio n. 1
0
        public ExampleApiPerformanceSteps(IReportDataGeneration reportDataGeneration, IExampleRestApiClient exampleRestApiClient)
        {
            this.reportDataGeneration = reportDataGeneration ?? throw new ArgumentNullException(nameof(reportDataGeneration));
            this.exampleRestApiClient = exampleRestApiClient ?? throw new ArgumentNullException(nameof(exampleRestApiClient));

            performanceActionList = new PerformanceActionList();
        }
Esempio n. 2
0
 public PerformanceExampleRestApi(IExampleRestApiClient exampleRestApiClient, int totalRequests)
 {
     this.exampleRestApiClient = exampleRestApiClient ?? throw new ArgumentNullException(nameof(exampleRestApiClient));
 }
 public ExampleApiSteps(IExampleRestApiClient exampleRestApiClient, IResourcesMapper resourcesMapper)
 {
     this.exampleRestApiClient = exampleRestApiClient ?? throw new ArgumentNullException(nameof(exampleRestApiClient));
     this.resourcesMapper      = resourcesMapper ?? throw new ArgumentNullException(nameof(resourcesMapper));
 }