public void ParseCommand_InvalidCommandSetDefaults_Successful()
        {
            var command = new QrCodeBarCodeCommand();

            command.ParseCommand("^BQX,1,2,X,1");
            Assert.AreEqual(Orientation.Normal, command.Orientation);
            Assert.AreEqual(1, command.Model);
            Assert.AreEqual(2, command.MagnificationFactor);
            Assert.AreEqual(ErrorCorrectionLevel.HighReliability, command.ErrorCorrection);
            Assert.AreEqual(1, command.MaskValue);
        }
        public void ParseCommand_ValidCommand3_Successful()
        {
            var command = new QrCodeBarCodeCommand();

            command.ParseCommand("^BQN,1,2,M,1");
            Assert.AreEqual(Orientation.Normal, command.Orientation);
            Assert.AreEqual(1, command.Model);
            Assert.AreEqual(2, command.MagnificationFactor);
            Assert.AreEqual(ErrorCorrectionLevel.Standard, command.ErrorCorrection);
            Assert.AreEqual(1, command.MaskValue);
        }