1 Star 1 Fork 21

qw_1215/Fyne

forked from Gitee 极速下载/Fyne 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
shortcut_test.go 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
package fyne
import (
"sync"
"testing"
"github.com/stretchr/testify/assert"
)
func syncMapLen(m *sync.Map) (n int) {
m.Range(func(_, _ interface{}) bool {
n++
return true
})
return
}
func TestShortcutHandler_AddShortcut(t *testing.T) {
handle := &ShortcutHandler{}
handle.AddShortcut(&ShortcutCopy{}, func(shortcut Shortcut) {})
handle.AddShortcut(&ShortcutPaste{}, func(shortcut Shortcut) {})
assert.Equal(t, 2, syncMapLen(&handle.entry))
}
func TestShortcutHandler_RemoveShortcut(t *testing.T) {
handler := &ShortcutHandler{}
handler.AddShortcut(&ShortcutCopy{}, func(shortcut Shortcut) {})
handler.AddShortcut(&ShortcutPaste{}, func(shortcut Shortcut) {})
assert.Equal(t, 2, syncMapLen(&handler.entry))
handler.RemoveShortcut(&ShortcutCopy{})
assert.Equal(t, 1, syncMapLen(&handler.entry))
handler.RemoveShortcut(&ShortcutPaste{})
assert.Equal(t, 0, syncMapLen(&handler.entry))
}
func TestShortcutHandler_HandleShortcut(t *testing.T) {
handle := &ShortcutHandler{}
cutCalled, copyCalled, pasteCalled := false, false, false
handle.AddShortcut(&ShortcutCut{}, func(shortcut Shortcut) {
cutCalled = true
})
handle.AddShortcut(&ShortcutCopy{}, func(shortcut Shortcut) {
copyCalled = true
})
handle.AddShortcut(&ShortcutPaste{}, func(shortcut Shortcut) {
pasteCalled = true
})
handle.TypedShortcut(&ShortcutCut{})
assert.True(t, cutCalled)
handle.TypedShortcut(&ShortcutCopy{})
assert.True(t, copyCalled)
handle.TypedShortcut(&ShortcutPaste{})
assert.True(t, pasteCalled)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/qw_1215/Fyne.git
[email protected]:qw_1215/Fyne.git
qw_1215
Fyne
Fyne
master

搜索帮助