public void TestValidMaxmiumLengthWhenValid() { var function = new Function(); function.Parameters.Add("3"); var result = validator.IsValid(function, null, "hello"); Assert.IsTrue(result); }
public void TestValidMaxmiumLengthWhenValid() { var result = validator.IsValid("hello", "3"); Assert.IsTrue(result); }