Ejemplo n.º 1
0
        public void TestValidMaxmiumLengthWhenValid()
        {
            var function = new Function();

            function.Parameters.Add("3");

            var result = validator.IsValid(function, null, "hello");

            Assert.IsTrue(result);
        }
Ejemplo n.º 2
0
        public void TestValidMaxmiumLengthWhenValid()
        {
            var result = validator.IsValid("hello", "3");

            Assert.IsTrue(result);
        }