light-core/test/start_test.go
2024-12-17 22:47:16 +08:00

18 lines
300 B
Go

package test
import (
"code.zhecent.com/gopkg/light-core/lightCore"
"github.com/gin-gonic/gin"
"testing"
)
func TestStart(t *testing.T) {
lightCore.StartEngine("debug").
//LoadHtml("view/*").
Mounts([]*lightCore.Routers{}).
SetNoRoute(func(context *gin.Context) {
}).
Launch(8888)
}