AjScript.Tests.Interpreter.ParserTests.ParseSetPropertyCommand C# (CSharp) Method

ParseSetPropertyCommand() private method

private ParseSetPropertyCommand ( ) : void
return void
        public void ParseSetPropertyCommand()
        {
            ICommand command = ParseCommand("a.FirstName = \"Adam\";");

            Assert.IsNotNull(command);
        }
ParserTests