()
| 10 | public class TestInit extends BaseTest |
| 11 | { |
| 12 | public java.util.concurrent.CompletableFuture<Object> baseTestsInit() |
| 13 | { |
| 14 | |
| 15 | return java.util.concurrent.CompletableFuture.supplyAsync(() -> { |
| 16 | |
| 17 | (new TestLanguageSpecific()).testLanguageSpecific(); |
| 18 | (new TestAfterConstructor()).testAfterConstructor(); |
| 19 | (new TestExtend()).testExtend(); |
| 20 | (new TestDeepExtend()).testDeepExtend(); |
| 21 | (new TestCryptography()).testCryptography(); |
| 22 | (new TestDatetime()).testDatetime(); |
| 23 | (new TestDecimalToPrecision()).testDecimalToPrecision(); |
| 24 | (new TestNumberToString()).testNumberToString(); |
| 25 | (new TestPrecise()).testPrecise(); |
| 26 | (new TestSafeMethods()).testSafeMethods(); |
| 27 | (new TestSafeTicker()).testSafeTicker(); |
| 28 | (new TestJson()).testJson(); |
| 29 | (new TestSortBy()).testSortBy(); |
| 30 | (new TestSum()).testSum(); |
| 31 | (new TestOmit()).testOmit(); |
| 32 | (new TestGroupBy()).testGroupBy(); |
| 33 | (new TestFilterBy()).testFilterBy(); |
| 34 | (new TestHandleMethods()).testHandleMethods(); |
| 35 | (new TestRemoveRepeatedElementsFromArray()).testRemoveRepeatedElementsFromArray(); |
| 36 | (new TestParsePrecision()).testParsePrecision(); |
| 37 | (new TestArraysConcat()).testArraysConcat(); |
| 38 | ((new TestSleep()).testSleep()).join(); |
| 39 | return true; |
| 40 | }, io.github.ccxt.Exchange.VIRTUAL_EXECUTOR); |
| 41 | |
| 42 | } |
| 43 | } |
no test coverage detected