代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/Fyne 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package fyne
import (
"reflect"
"testing"
)
func testFunc1() {}
func testFunc2() {}
func testFunc3() {}
func testFunc4() {}
var menuItemsTest = []struct {
Label string
Action func()
Item *MenuItem
}{
{"item1", testFunc1, &MenuItem{Label: "item1", Action: testFunc1}},
{"item2", testFunc2, &MenuItem{Label: "item2", Action: testFunc2}},
{"item3", testFunc3, &MenuItem{Label: "item3", Action: testFunc3}},
{"item4", testFunc4, &MenuItem{Label: "item4", Action: testFunc4}},
}
var menuTest = []struct {
Label string
}{
{"menu1"},
{"menu2"},
}
func TestNewMainMenu(t *testing.T) {
var items []*MenuItem
var menus []*Menu
for _, tt := range menuItemsTest {
t.Run(tt.Label, func(t *testing.T) {
item := NewMenuItem(tt.Label, tt.Action)
// Compare sprinted address
if reflect.ValueOf(item.Action) != reflect.ValueOf(tt.Action) {
t.Errorf("Expected %v but got %v", reflect.ValueOf(tt.Action), reflect.ValueOf(item.Action))
}
if item.Label != tt.Label {
t.Errorf("Expected %v but got %v", tt.Label, item.Label)
}
items = append(items, item)
})
}
if len(items) < 4 {
t.Errorf("Expected %d menu items but got %d", len(menuItemsTest), len(items))
}
for _, tt := range menuTest {
t.Run(tt.Label, func(t *testing.T) {
menu := NewMenu(tt.Label, items...)
if menu.Label != tt.Label {
t.Errorf("Expected menu label %s but got %s", tt.Label, menu.Label)
}
if !reflect.DeepEqual(menu.Items, items) {
t.Errorf("Expected items to resemble what was inputted, but got %v", menu.Items)
}
menus = append(menus, menu)
})
}
mm := NewMainMenu(menus...)
if !reflect.DeepEqual(mm.Items, menus) {
t.Errorf("Expected main menu to contain all submenus but got %v", mm.Items)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。