public void MatchWhenCalledWhithShrInstructionReturnsTokenPosition()
        {
            var tokenMatcher = new InstructionToken();

            Assert.That(tokenMatcher.Match("SHR"), Is.EqualTo("SHR"));
        }
        public void MatchWhenCalledWhithLowerCaseIfbInstructionReturnsTokenPosition()
        {
            var tokenMatcher = new InstructionToken();

            Assert.That(tokenMatcher.Match("ifb"), Is.EqualTo("ifb"));
        }