AjScript.Tests.Primitives.StringFunctionTests.HasPrototype C# (CSharp) Method

HasPrototype() private method

private HasPrototype ( ) : void
return void
        public void HasPrototype()
        {
            StringFunction function = new StringFunction(null);

            var result = function.GetValue("prototype");

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