go test -run Test_App_Handler
(t *testing.T)
| 2100 | |
| 2101 | // go test -run Test_App_Handler |
| 2102 | func Test_App_Handler(t *testing.T) { |
| 2103 | t.Parallel() |
| 2104 | h := New().Handler() |
| 2105 | require.Equal(t, "fasthttp.RequestHandler", reflect.TypeOf(h).String()) |
| 2106 | } |
| 2107 | |
| 2108 | type invalidView struct{} |
| 2109 |