Versions in this module Expand all Collapse all v1 v1.0.9 Sep 3, 2020 Changes in this version + var MappingsURL = fmt.Sprintf("%s/__admin/mappings", WireMockURL) + var RequestsURL = fmt.Sprintf("%s/__admin/requests", WireMockURL) + var WireMockURL = fmt.Sprintf("http://localhost:%s", os.Getenv("WIREMOCK_PORT")) + type Mapping struct + ID string + type ReceivedRequest struct + Body string + Headers map[string]string + Method string + URL string + type ReceivedResponse struct + Body string + Headers map[string]string + Status int + type RequestDefinition struct + BodyPatterns []interface{} + Headers map[string]string + Method string + URL string + type RequestOccurence struct + ID string + Request *ReceivedRequest + Response *ReceivedResponse + WasMatched bool + type Requests struct + Requests []*RequestOccurence + type ResponseDefinition struct + Body string + Headers map[string]string + Status int + type StepVerifier interface + type StubDefinition struct + Request *RequestDefinition + Response *ResponseDefinition