public void IsAddressInstructionWithSymbol_InputAddressInstructionWithSymbolAndRightWhitespacePadding_ReturnFalse()
        {
            bool isAddressInstructionWithLabel = SyntaxValidator.IsAddressInstructionWithSymbol("@R0           ");

            Assert.AreEqual(false, isAddressInstructionWithLabel);
        }
        public void IsAddressInstructionWithSymbol_InputInvalidAddressInstructionWithSymbol_ReturnFalse()
        {
            bool isAddressInstructionWithLabel = SyntaxValidator.IsAddressInstructionWithSymbol("@1InvalidLabel");

            Assert.AreEqual(false, isAddressInstructionWithLabel);
        }
        public void IsAddressInstructionWithSymbol_InputValidAddressInstructionWithSymbol_ReturnTrue()
        {
            bool isAddressInstructionWithLabel = SyntaxValidator.IsAddressInstructionWithSymbol("@R0");

            Assert.AreEqual(true, isAddressInstructionWithLabel);
        }