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(); }
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)); }