• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..08-Sep-2021-

README.mdH A D08-Sep-2021606 128

blockfilter.cppH A D08-Sep-2021764 2817

blockfilter.hH A D08-Sep-2021461 146

logging.cppH A D08-Sep-2021942 3223

logging.hH A D08-Sep-20211.3 KiB4220

mining.cppH A D08-Sep-20213 KiB8768

mining.hH A D08-Sep-2021967 3115

net.cppH A D08-Sep-20212.5 KiB6552

net.hH A D08-Sep-20213.9 KiB147114

script.cppH A D08-Sep-2021515 148

script.hH A D08-Sep-2021821 2515

setup_common.cppH A D08-Sep-202118 KiB337270

setup_common.hH A D08-Sep-20217.6 KiB222126

str.cppH A D08-Sep-2021642 2215

str.hH A D08-Sep-20211.5 KiB4628

transaction_utils.cppH A D08-Sep-20212.7 KiB7256

transaction_utils.hH A D08-Sep-20211.3 KiB3010

validation.cppH A D08-Sep-2021558 2315

validation.hH A D08-Sep-2021542 188

wallet.cppH A D08-Sep-20211.3 KiB4030

wallet.hH A D08-Sep-2021610 258

README.md

1# Test library
2
3This contains files for the test library, which is used by the test binaries (unit tests, benchmarks, fuzzers, gui
4tests).
5
6Generally, the files in this folder should be well-separated modules. New code should be added to existing modules or
7(when in doubt) a new module should be created.
8
9The utilities in here are compiled into a library, which does not hold any state. However, the main file `setup_common`
10defines the common test setup for all test binaries. The test binaries will handle the global state when they
11instantiate the `BasicTestingSetup` (or one of its derived classes).
12