From c326372b71da84c449b6097af5e281cd6fb46e2c Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 08 Jun 2020 15:41:35 +0800 Subject: [PATCH] 20200608 代码提交 --- src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java b/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java index bc04524..7e13408 100644 --- a/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java +++ b/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java @@ -1,14 +1,19 @@ 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.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 +51,18 @@ } + @Test + public void enumTest() { + System.out.println(SymbolEnum.BCH.getValue()); + } + + @Resource + AliOssProperties aliOssProperties; + + @Test + public void aliyunOssTest() { + log.info("{}", aliOssProperties.getEndPoint()); + } + } -- Gitblit v1.9.1