1 Star 0 Fork 0

坐公交也用券/glbm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
connect_test.go 710 Bytes
一键复制 编辑 原始数据 按行查看 历史
11806_uos 提交于 2023-03-22 16:30 . 完善系统类型信息获取
package glbm
import (
"fmt"
"testing"
)
func TestConnect(t *testing.T) {
dpkg := NewConnect(true)
logs.Info("开始新建")
err := dpkg.AddConnect()
if err != nil {
return
}
}
func TestConnectDns(t *testing.T) {
dpkg := NewConnect(true)
logs.Info("开始添加")
err := dpkg.AddDns()
if err != nil {
logs.Error("配置错误")
}
}
func TestApiConnection_GetUseCon(t *testing.T) {
co := NewConnect(true)
co.GetUseCon()
if co.Err != nil {
logs.Error("配置错误")
}
}
func TestApiConnection_GetConList(t *testing.T) {
co := NewConnect(true)
co.GetConList()
if co.Err != nil {
logs.Error("配置错误")
} else {
logs.Info("连接列表如下")
fmt.Println(co.ConList)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/liumou_site/glbm.git
git@gitee.com:liumou_site/glbm.git
liumou_site
glbm
glbm
master

搜索帮助