1Compiling/running unit tests
2------------------------------------
3
4Unit tests will be automatically compiled if dependencies were met in `./configure`
5and tests weren't explicitly disabled.
6
7After configuring, they can be run with `make check`.
8
9To run the bitcoind tests manually, launch `src/test/test_bitcoin`.
10
11To add more bitcoind tests, add `BOOST_AUTO_TEST_CASE` functions to the existing
12.cpp files in the `test/` directory or add new .cpp files that
13implement new BOOST_AUTO_TEST_SUITE sections.
14
15To run the bitcoin-qt tests manually, launch `src/qt/test/test_bitcoin-qt`
16
17To add more bitcoin-qt tests, add them to the `src/qt/test/` directory and
18the `src/qt/test/test_main.cpp` file.
19