# Functions
AssertCookie asserts cookie.
HandleDELETE is an alias for HandleRequest that builds the DELETE request from url and options.
HandleGET is an alias for HandleRequest that builds the GET request from url and options.
HandlePATCH is an alias for HandleRequest that builds the PATCH request from url, body and options.
HandlePOST is an alias for HandleRequest that builds the POST request from url, body and options.
HandlePUT is an alias for HandleRequest that builds the PUT request from url, body and options.
HandleRequest is used to test http.Handler by passing httptest.ResponseRecorder to it.
WithContentType option overrides Content-Type header to the request.
WithCookie option adds a cookie to the request.
WithHeader option overrides specific header to the request.
WithJSONContentType option overrides Content-Type header to the request with "application/json" content type.
# Structs
CookieAssertion is used to build assertions for cookies.
ResponseAssertion is used to build assertions around httptest.ResponseRecorder.
# Interfaces
TestingT is an interface wrapper around *testing.T.
# Type aliases
RequestOption can be used to tune up http.Request.