AjScript.Tests.Primitives.StringFunctionTests.HasPrototype C# (CSharp) Méthode

HasPrototype() private méthode

private HasPrototype ( ) : void
Résultat void
        public void HasPrototype()
        {
            StringFunction function = new StringFunction(null);

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

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