mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-03 18:56:59 +01:00
Run MethodTestSuite
This commit is contained in:
parent
65e3370d51
commit
fae661c912
1 changed files with 5 additions and 0 deletions
|
@ -21,12 +21,14 @@ import lombok.extern.slf4j.Slf4j;
|
|||
|
||||
import static bisq.apitest.Scaffold.EXIT_FAILURE;
|
||||
import static bisq.apitest.Scaffold.EXIT_SUCCESS;
|
||||
import static bisq.apitest.config.BisqAppConfig.alicedaemon;
|
||||
import static java.lang.System.err;
|
||||
import static java.lang.System.exit;
|
||||
|
||||
|
||||
|
||||
import bisq.apitest.config.ApiTestConfig;
|
||||
import bisq.apitest.method.MethodTestSuite;
|
||||
|
||||
/**
|
||||
* ApiTest Application
|
||||
|
@ -51,6 +53,9 @@ public class ApiTestMain {
|
|||
log.info("Skipping tests ...");
|
||||
} else {
|
||||
new SmokeTestBitcoind(config).run();
|
||||
GrpcStubs grpcStubs = new GrpcStubs(alicedaemon, config).init();
|
||||
MethodTestSuite methodTestSuite = new MethodTestSuite(grpcStubs);
|
||||
methodTestSuite.run();
|
||||
}
|
||||
|
||||
if (config.shutdownAfterTests) {
|
||||
|
|
Loading…
Add table
Reference in a new issue