Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions test/functional/feature_hello_world.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env python3
"""A very minimalistic Hello World test!
"""
from collections import defaultdict
from test_framework.test_framework import BitcoinTestFramework


class ExampleTest(BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 1

def run_test(self):
"""Main test logic"""

self.log.info("Hello Brazil!")


if __name__ == '__main__':
ExampleTest(__file__).main()
1 change: 1 addition & 0 deletions test/functional/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
'p2p_segwit.py',
'feature_maxuploadtarget.py',
'feature_assumeutxo.py',
'feature_hello_world.py',
'mempool_updatefromblock.py',
'mempool_persist.py',
# vv Tests less than 60s vv
Expand Down