4 Star 22 Fork 8

北京小程科技有限公司/SDP协议

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
basic_test.go 590 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2020-04-05 10:41 . 添加SDP协议的内容解析。
package sdp
import (
"fmt"
"testing"
)
func TestBasic(t *testing.T) {
tests := []struct {
item string
wantErr bool
}{
{"1011 134535 134535 IN IP4 192.168.0.100", false},
}
for i, tt := range tests {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
item, err := parseBasic(tt.item)
if (err != nil) != tt.wantErr {
t.Errorf("basic error = %v, wantErr %v", err, tt.wantErr)
return
}
wantString := output(FieldBasic, tt.item)
if str := item.String(); str != wantString {
t.Errorf("basic string = %v, wantString %v", str, wantString)
}
})
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xiaochengtech/sdp.git
[email protected]:xiaochengtech/sdp.git
xiaochengtech
sdp
SDP协议
master

搜索帮助