Beispiel #1
0
        public void ShouldMatchAnything()
        {
            var parameters = HttpUtility.ParseQueryString("?id=a&id2=1");

            Assert.That(ParamIs.Anything().IsMatch(parameters.GetValues("id")), Is.True);
            Assert.That(ParamIs.Anything().IsMatch(parameters.GetValues("id2")), Is.True);
        }