testapp.command.command_factory
Classes
명령어 객체를 생성하는 팩토리 클래스입니다. |
Functions
|
주어진 이름이 사전 정의된 명령어인지 확인합니다. |
|
주어진 명령어의 유효성을 검사합니다. |
Module Contents
- class testapp.command.command_factory.CommandFactory[source]
명령어 객체를 생성하는 팩토리 클래스입니다.
- _cmd_dict: Dict[str, Type[testapp.command.__interface.CommandInterface]][source]
- classmethod get_command_instance(cmd_name: str) testapp.command.__interface.CommandInterface [source]
주어진 명령 옵션에 해당하는 명령어 객체를 반환합니다.
- Parameters:
cmd_name (str) – 명령 이름
- Returns:
명령어 객체
- Return type:
- testapp.command.command_factory.is_predefined_command_name(name: str) bool [source]
주어진 이름이 사전 정의된 명령어인지 확인합니다.
- Parameters:
name (str) – 확인할 명령어 이름
- Returns:
사전 정의된 명령어이면 True, 그렇지 않으면 False
- Return type:
bool