AjScript.Tests.Language.FunctionTests.FunctionLength C# (CSharp) Метод

FunctionLength() приватный Метод

private FunctionLength ( ) : void
Результат void
        public void FunctionLength()
        {
            ICommand body = new ReturnCommand(new VariableExpression("x"));
            Function function = new Function(new string[] { "x" }, body);

            object result = function.GetValue("length");

            Assert.IsNotNull(result);
            Assert.AreEqual(1, result);
        }