AjScript.Tests.Language.FunctionTests.FunctionHasCallMethod C# (CSharp) 메소드

FunctionHasCallMethod() 개인적인 메소드

private FunctionHasCallMethod ( ) : void
리턴 void
        public void FunctionHasCallMethod()
        {
            ICommand body = new ReturnCommand(new VariableExpression("x"));
            Function function = new Function(new string[] { "x" }, body);

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

            Assert.IsNotNull(result);
            Assert.IsInstanceOfType(result, typeof(ICallable));
        }