app/main_test.go

13 lines
117 B
Go

package app
import (
"testing"
)
func TestMain(t *testing.T) {
sys := Default()
go sys.Start()
<-sys.Done()
}