Expected to return a method name. This name will be available as a driver method. Returns: 'str' The method name.
(self)
| 172 | return self._execute(self.method_name(), param) |
| 173 | |
| 174 | def method_name(self) -> str: |
| 175 | """ |
| 176 | Expected to return a method name. |
| 177 | This name will be available as a driver method. |
| 178 | |
| 179 | Returns: |
| 180 | 'str' The method name. |
| 181 | """ |
| 182 | raise NotImplementedError() |
| 183 | |
| 184 | def add_command(self) -> Tuple[str, str]: |
| 185 | """ |
no outgoing calls
no test coverage detected