﻿server
    .Given(Request.Create()
        .UsingMethod("GET")
        .WithPath(new WireMock.Matchers.FormUrlEncodedMatcher(WireMock.Matchers.MatchBehaviour.AcceptOnMatch, new AnyOfTypes.AnyOf<string, WireMock.Models.StringPattern>[] { "a=1", "b=2" }, false, WireMock.Matchers.MatchOperator.Or))
    )
    .WithGuid("8e7b9ab7-e18e-4502-8bc9-11e6679811cc")
    .RespondWith(Response.Create()
        .WithStatusCode(200)
    );
