(Exchange exchange)
| 152 | } |
| 153 | |
| 154 | public java.util.concurrent.CompletableFuture<Object> importFiles(Exchange exchange) |
| 155 | { |
| 156 | |
| 157 | return java.util.concurrent.CompletableFuture.supplyAsync(() -> { |
| 158 | |
| 159 | Object properties = Helpers.objectKeys(exchange.has); |
| 160 | ((java.util.List<Object>)properties).add("loadMarkets"); |
| 161 | ((java.util.List<Object>)properties).add("afterConstruct"); |
| 162 | if (Helpers.isTrue(isSync())) |
| 163 | { |
| 164 | this.testFiles = getTestFilesSync(properties, this.wsTests); |
| 165 | } else |
| 166 | { |
| 167 | this.testFiles = (getTestFiles(properties, this.wsTests)).join(); |
| 168 | } |
| 169 | return true; |
| 170 | }); |
| 171 | |
| 172 | } |
| 173 | |
| 174 | public void loadCredentialsFromEnv(Exchange exchange) |
| 175 | { |
no test coverage detected