15 lines
182 B
Go
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)
|
|
}
|
|
}
|