mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 08:19:35 +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)
|
|
}
|
|
}
|