1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 18:07:01 +00:00
Files
kararas_iris/httptest/server.go
Gerasimos (Makis) Maropoulos 7761069873 minor
2022-10-22 18:06:18 +03:00

19 lines
340 B
Go

package httptest
import (
"net/http/httptest"
"github.com/kataras/iris/v12"
)
// NewServer is just a helper to create a new standard
// httptest.Server instance.
func NewServer(t IrisTesty, app *iris.Application) *httptest.Server {
if err := app.Build(); err != nil {
t.Fatal(err)
return nil
}
return httptest.NewServer(app)
}