Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 08-Sep-2021 | - | ||||
README.md | H A D | 08-Sep-2021 | 606 | 12 | 8 | |
blockfilter.cpp | H A D | 08-Sep-2021 | 764 | 28 | 17 | |
blockfilter.h | H A D | 08-Sep-2021 | 461 | 14 | 6 | |
logging.cpp | H A D | 08-Sep-2021 | 942 | 32 | 23 | |
logging.h | H A D | 08-Sep-2021 | 1.3 KiB | 42 | 20 | |
mining.cpp | H A D | 08-Sep-2021 | 3 KiB | 87 | 68 | |
mining.h | H A D | 08-Sep-2021 | 967 | 31 | 15 | |
net.cpp | H A D | 08-Sep-2021 | 2.5 KiB | 65 | 52 | |
net.h | H A D | 08-Sep-2021 | 3.9 KiB | 147 | 114 | |
script.cpp | H A D | 08-Sep-2021 | 515 | 14 | 8 | |
script.h | H A D | 08-Sep-2021 | 821 | 25 | 15 | |
setup_common.cpp | H A D | 08-Sep-2021 | 18 KiB | 337 | 270 | |
setup_common.h | H A D | 08-Sep-2021 | 7.6 KiB | 222 | 126 | |
str.cpp | H A D | 08-Sep-2021 | 642 | 22 | 15 | |
str.h | H A D | 08-Sep-2021 | 1.5 KiB | 46 | 28 | |
transaction_utils.cpp | H A D | 08-Sep-2021 | 2.7 KiB | 72 | 56 | |
transaction_utils.h | H A D | 08-Sep-2021 | 1.3 KiB | 30 | 10 | |
validation.cpp | H A D | 08-Sep-2021 | 558 | 23 | 15 | |
validation.h | H A D | 08-Sep-2021 | 542 | 18 | 8 | |
wallet.cpp | H A D | 08-Sep-2021 | 1.3 KiB | 40 | 30 | |
wallet.h | H A D | 08-Sep-2021 | 610 | 25 | 8 |
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