From 817bb83d5ec3e5ad379f10844362c74d8f836395 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 29 May 2020 16:15:25 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/chonggaoxiao/new_excoin.git

---
 src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java b/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java
index df45836..7e13408 100644
--- a/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java
+++ b/src/test/java/com/xcong/excoin/KssframeworkApplicationTests.java
@@ -2,15 +2,18 @@
 
 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 {
 
@@ -53,5 +56,13 @@
         System.out.println(SymbolEnum.BCH.getValue());
     }
 
+    @Resource
+    AliOssProperties aliOssProperties;
+
+    @Test
+    public void aliyunOssTest() {
+        log.info("{}", aliOssProperties.getEndPoint());
+    }
+
 
 }

--
Gitblit v1.9.1