mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:31:20 +08:00
17 lines
344 B
Go
17 lines
344 B
Go
package runtime
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/wailsapp/wails/v2/internal/logger"
|
|
"github.com/wailsapp/wails/v2/internal/servicebus"
|
|
)
|
|
|
|
func TestBrowserOpen(t *testing.T) {
|
|
mylogger := logger.New(os.Stdout)
|
|
myServiceBus := servicebus.New(mylogger)
|
|
myRuntime := New(myServiceBus)
|
|
myRuntime.Browser.Open("http://www.google.com")
|
|
}
|