Esempio n. 1
0
        public void Should_get_url_parameters(string path, string requestPath, string parameter, string parameterValue)
        {
            var request = new RequestFake
            {
                Path   = path,
                Method = "GET",
                ResponseBuilderType = ResponseBuilderType.ResponseCopy
            };

            request.GetUrlParams(requestPath)
            .Should()
            .ContainKey(parameter)
            .And
            .ContainValue(parameterValue);
        }