testapp.command.fullwrite ========================= .. py:module:: testapp.command.fullwrite Classes ------- .. autoapisummary:: testapp.command.fullwrite.FullWriteCommand Module Contents --------------- .. py:class:: FullWriteCommand Bases: :py:obj:`testapp.command.__interface.CommandInterface` FullWrite 클래스는 SSD의 모든 LBA에 동일한 값을 쓰는 명령어를 구현합니다. .. attribute:: driver SSD 드라이버 객체 :type: SsdDriver .. py:attribute:: required_args_cnt :type: int :value: 1 .. py:attribute:: driver .. py:method:: run(value: str | int) -> None SSD의 모든 LBA에 값을 씁니다. :param value: 쓸 값 (16진수 문자열) :type value: str .. py:method:: is_valid_args(*args) -> bool :staticmethod: 주어진 인자가 유효한지 확인합니다. :returns: 인자가 유효한 경우 True, 그렇지 않으면 False :rtype: bool