testapp.command.erase_range =========================== .. py:module:: testapp.command.erase_range Classes ------- .. autoapisummary:: testapp.command.erase_range.EraseRangeCommand Module Contents --------------- .. py:class:: EraseRangeCommand Bases: :py:obj:`testapp.command.__interface.CommandInterface` EraseRange 클래스는 지정된 LBA 범위의 데이터를 삭제하는 명령어를 구현합니다. .. attribute:: driver SSD 드라이버 객체 :type: SsdDriver .. py:attribute:: required_args_cnt :type: int :value: 2 .. py:attribute:: driver .. py:method:: run(start_lba: str, end_lba: str) 지정된 시작 LBA와 끝 LBA 사이의 데이터를 삭제합니다. :param start_lba: 시작 논리 블록 주소 :type start_lba: str :param end_lba: 끝 논리 블록 주소 :type end_lba: str .. py:method:: is_valid_args(*args) -> bool :staticmethod: 주어진 인자가 유효한지 확인합니다. :returns: 인자가 유효한 경우 True, 그렇지 않으면 False :rtype: bool