Method
testSignIn
(Exchange exchange, Object skippedProperties)
Source from the content-addressed store, hash-verified
| 11 | |
| 12 | public 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
Tested by
no test coverage detected