()
| 691 | } |
| 692 | |
| 693 | func (c OrchestratorClient) httpClientSettings() network.HttpClientSettings { |
| 694 | return *network.NewHttpClientSettings( |
| 695 | c.debug, |
| 696 | c.settings.OperationId, |
| 697 | c.settings.Header, |
| 698 | c.settings.Timeout, |
| 699 | c.settings.MaxAttempts, |
| 700 | c.settings.Insecure) |
| 701 | } |
| 702 | |
| 703 | func (c OrchestratorClient) GetTestSetExecutionUrl(folderId int, testSetExecutionId int) string { |
| 704 | return c.newUriBuilder("/test/executions/{testSetExecutionId}"). |
no test coverage detected