1 Star 2 Fork 0

dingdayu/async

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
async_test.go 889 Bytes
一键复制 编辑 原始数据 按行查看 历史
dingdayu 提交于 2020-10-19 17:27 . add async_test.go
package async
import (
"context"
"os"
"reflect"
"testing"
)
func TestNewAsync(t *testing.T) {
type args struct {
ctx context.Context
ch <-chan os.Signal
}
tests := []struct {
name string
args args
want *Async
}{
{
name: "new",
args: args{
ctx: context.Background(),
ch: make(chan os.Signal),
},
want: NewAsync(context.Background(), make(chan os.Signal)),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewAsync(tt.args.ctx, tt.args.ch); !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewAsync() = %v, want %v", got, tt.want)
}
})
}
}
func TestAsync_RegisterOnShutdown(t *testing.T) {
asy := NewAsync(context.Background(), make(chan os.Signal))
asy.RegisterOnShutdown(func(s os.Signal) {
return
})
if len(asy.onShutdown) != 1 {
t.Error("RegisterOnShutdown() Shutdown register error")
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dingdayu/async.git
git@gitee.com:dingdayu/async.git
dingdayu
async
async
v2

搜索帮助