MCPcopy
hub / github.com/ccxt/ccxt / testSignIn

Method testSignIn

java/tests/src/main/java/tests/exchange/TestSignIn.java:13–26  ·  view source on GitHub ↗
(Exchange exchange, Object skippedProperties)

Source from the content-addressed store, hash-verified

11
12public class TestSignIn extends BaseTest {
13 public java.util.concurrent.CompletableFuture<Object> testSignIn(Exchange exchange, Object skippedProperties)
14 {
15
16 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
17
18 Object method = "signIn";
19 if (Helpers.isTrue(Helpers.GetValue(exchange.has, method)))
20 {
21 (exchange.signIn()).join();
22 }
23 return true;
24 });
25
26 }
27
28}

Callers

nothing calls this directly

Calls 3

isTrueMethod · 0.95
GetValueMethod · 0.95
signInMethod · 0.45

Tested by

no test coverage detected