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