public void IsEnd()
        {
            AsmEndInstruction target = new AsmEndInstruction();
            Boolean           result = target.IsEnd();

            Assert.IsTrue(result, "END 命令の IsEnd() => true");
        }
        private void CheckReadOperand(String text, Boolean success, String message)
        {
            AsmEndInstruction target = new AsmEndInstruction();

            ProgramInstructionTest.CheckReadOperand(target, text, success, message);
        }