yao/runtime/runtime_test.go
2023-02-03 10:58:39 +08:00

15 lines
182 B
Go

package runtime
import (
"testing"
"github.com/yaoapp/yao/config"
)
func TestStart(t *testing.T) {
defer Stop()
err := Start(config.Conf)
if err != nil {
t.Fatal(err)
}
}