public void TestDecrementMemoryValue()
 {
     var objBrainmessInterpreter = new Program
         {
             tapememory = new short[Constant.MemoryLength]
         };
     objBrainmessInterpreter.DecrementMemoryValue();
     Assert.AreEqual(-1, objBrainmessInterpreter.tapememory[objBrainmessInterpreter.ptrMemory]);
 }