mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 12:10:56 +08:00
14 lines
142 B
Go
14 lines
142 B
Go
package buildinfo
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestGet(t *testing.T) {
|
|
result, err := Get()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
_ = result
|
|
}
|