testapp.command.read ==================== .. py:module:: testapp.command.read Classes ------- .. autoapisummary:: testapp.command.read.ReadCommand Module Contents --------------- .. py:class:: ReadCommand Bases: :py:obj:`testapp.command.__interface.CommandInterface` Read 클래스는 지정된 LBA에서 데이터를 읽는 명령어를 구현합니다. .. attribute:: driver SSD 드라이버 객체 :type: SsdDriver .. py:attribute:: required_args_cnt :type: int :value: 1 .. py:attribute:: driver .. py:method:: run(lba: str | int) -> str 지정된 LBA에서 데이터를 읽습니다. 읽어온 데이터를 화면에 출력합니다. :param lba: 논리 블록 주소 :type lba: str | int .. py:method:: is_valid_args(*args) -> bool :staticmethod: 주어진 인자가 유효한지 확인합니다. :returns: 인자가 유효한 경우 True, 그렇지 않으면 False :rtype: bool