main_test.go 192 B

123456789101112
  1. package main
  2. import (
  3. "testing"
  4. "github.com/kataras/iris/httptest"
  5. )
  6. func TestController(t *testing.T) {
  7. e := httptest.New(t, newApp())
  8. e.POST("/").Expect().Status(httptest.StatusOK)
  9. }