Do some custom behaviour If this function is more generally useful for other tests, consider moving it to a module in test_framework.
()
| 58 | pass |
| 59 | |
| 60 | def custom_function(): |
| 61 | """Do some custom behaviour |
| 62 | |
| 63 | If this function is more generally useful for other tests, consider |
| 64 | moving it to a module in test_framework.""" |
| 65 | # self.log.info("running custom_function") # Oops! Can't run self.log outside the BitcoinTestFramework |
| 66 | pass |
| 67 | |
| 68 | |
| 69 | class ExampleTest(BitcoinTestFramework): |