🎨 solon-plugins 添加单元测试支持,可触发必要错误用于人工核对

This commit is contained in:
西东
2024-09-06 23:46:08 +08:00
committed by GitHub
parent 6ef2e83fe2
commit a6e3c86505
19 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package features.test;
import org.junit.jupiter.api.Test;
import org.noear.solon.test.SolonTest;
/**
* @author noear 2024/9/4 created
*/
@SolonTest
public class LoadTest {
@Test
public void load(){
}
}

View File

@@ -0,0 +1,18 @@
# ?????(??)
wx.miniapp.appid = appId
wx.miniapp.secret = @secret
wx.miniapp.token = @token
wx.miniapp.aesKey = @aesKey
wx.miniapp.msgDataFormat = @msgDataFormat # ?????XML??JSON.
# ????redis(??)
# ??: ??redis.host???????????redis??(JedisPool)
wx.miniapp.config-storage.type = Jedis # ????: Memory(??), Jedis, RedisTemplate
wx.miniapp.config-storage.key-prefix = wa # ??redis????: wa(??)
wx.miniapp.config-storage.redis.host = 127.0.0.1
wx.miniapp.config-storage.redis.port = 6379
# http?????
wx.miniapp.config-storage.http-client-type=HttpClient # http?????: HttpClient(??), OkHttp, JoddHttp
wx.miniapp.config-storage.http-proxy-host=
wx.miniapp.config-storage.http-proxy-port=
wx.miniapp.config-storage.http-proxy-username=
wx.miniapp.config-storage.http-proxy-password=