mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-07 13:19:54 +08:00
11 lines
137 B
Go
11 lines
137 B
Go
package doctor
|
|
|
|
import "testing"
|
|
|
|
func TestRun(t *testing.T) {
|
|
err := Run()
|
|
if err != nil {
|
|
t.Errorf("TestRun failed: %v", err)
|
|
}
|
|
}
|