Helius
2020-07-07 ce4fb58f85eefe9fe6bb6213d8f1576d1925a5ef
src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java
@@ -1,14 +1,20 @@
package com.xcong.excoin;
import com.xcong.excoin.common.enumerates.CoinTypeEnum;
import com.xcong.excoin.common.enumerates.SymbolEnum;
import com.xcong.excoin.configurations.properties.AliOssProperties;
import com.xcong.excoin.modules.coin.service.BlockCoinService;
import com.xcong.excoin.modules.test.dao.TestUserDao;
import com.xcong.excoin.modules.test.entity.TestUserEntity;
import com.xcong.excoin.modules.test.service.TestUserService;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import javax.annotation.Resource;
import java.util.Date;
@Slf4j
@SpringBootTest
class KssframeworkApplicationTests {
@@ -46,5 +52,26 @@
    }
    @Test
    public void enumTest() {
        System.out.println(SymbolEnum.BCH.getValue());
    }
    @Resource
    AliOssProperties aliOssProperties;
    @Test
    public void aliyunOssTest() {
        log.info("{}", aliOssProperties.getEndPoint());
    }
    @Resource
    private BlockCoinService blockCoinService;
    @Test
    public void usdtEthTest() {
        blockCoinService.updateEthUsdt();
    }
}