mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-08-09 08:13:29 +08:00
- 修复 Windows、macOS 与关于页的品牌图标展示及资源裁切问题 - 补齐 SQLite 表记录数与 SELECT 查询结果渲染 - 增加品牌图标和 SQLite 回归测试
12 lines
248 B
Go
12 lines
248 B
Go
//go:build !darwin
|
|
|
|
package app
|
|
|
|
import "testing"
|
|
|
|
func TestSetApplicationIconPNGIsExplicitlyUnsupportedOutsideMacOS(t *testing.T) {
|
|
if err := setApplicationIconPNG([]byte{0x89}); err == nil {
|
|
t.Fatal("expected unsupported-platform error")
|
|
}
|
|
}
|