(self, exchange_id, symbol_argv, method_argv)
| 42 | self.ext = get_ext() |
| 43 | |
| 44 | def init(self, exchange_id, symbol_argv, method_argv): |
| 45 | try: |
| 46 | self.init_inner(exchange_id, symbol_argv, method_argv) |
| 47 | except Exception as e: |
| 48 | dump('[TEST_FAILURE]') # tell run-tests.js this is failure |
| 49 | raise e |
| 50 | return True |
| 51 | |
| 52 | def init_inner(self, exchange_id, symbol_argv, method_argv): |
| 53 | self.parse_cli_args_and_props() |
no test coverage detected