public void ParseCommand_ValidCommand2_Successful()
        {
            var command = new CommentCommand();

            command.ParseCommand("^FXtest");
            Assert.AreEqual("test", command.NonPrintingComment);
        }
        public void ParseCommand_ValidCommand1_Successful()
        {
            var command = new CommentCommand();

            command.ParseCommand("^FX");
            Assert.AreEqual(string.Empty, command.NonPrintingComment);
        }