1 Star 0 Fork 38

zhiming/go808

forked from coco/go808 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
multipart_test.go 540 Bytes
一键复制 编辑 原始数据 按行查看 历史
anchor 提交于 2021-05-28 17:18 . 更新包名
package go808
import (
"gitee.com/coco/go808/protocol"
"github.com/stretchr/testify/assert"
"testing"
)
func TestMultipartFile(t *testing.T) {
multipartFile := MultipartFile{
IccID: 19923476579,
MsgID: protocol.MsgT808_0x0100,
Sum: 3,
Tag: 123456,
}
multipartFile.Write(2, []byte{0x03, 0x04})
multipartFile.Write(1, []byte{0x01, 0x02})
multipartFile.Write(3, []byte{0x05, 0x06})
assert.True(t, multipartFile.IsFull())
reader, err := multipartFile.Merge()
if err != nil {
assert.Error(t, err)
}
reader.Close()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dangzhiming/go808.git
[email protected]:dangzhiming/go808.git
dangzhiming
go808
go808
master

搜索帮助