(self)
| 48 | self.supports_cli = False |
| 49 | |
| 50 | def run_test(self): |
| 51 | self.test_client_conversion_table() |
| 52 | self.test_categories() |
| 53 | self.dump_help() |
| 54 | if self.is_wallet_compiled(): |
| 55 | self.wallet_help() |
| 56 | |
| 57 | def test_client_conversion_table(self): |
| 58 | file_conversion_table = os.path.join(self.config["environment"]["SRCDIR"], 'src', 'rpc', 'client.cpp') |
nothing calls this directly
no test coverage detected