bitcoin/src/test
mb300sd 37d271d7cc Rename OP_NOP2 to OP_CHECKLOCKTIMEVERIFY. 2015-12-15 02:01:45 -05:00
..
data Rename OP_NOP2 to OP_CHECKLOCKTIMEVERIFY. 2015-12-15 02:01:45 -05:00
Checkpoints_tests.cpp chainparams: move CCheckpointData into chainparams.h 2015-07-28 15:26:50 -04:00
DoS_tests.cpp Replace trickle nodes with per-node/message Poisson delays 2015-12-11 22:20:38 +01:00
Makefile
README.md Clarification of unit test build instructions. 2015-10-10 06:46:35 -04:00
accounting_tests.cpp Optimisation: Store transaction list order in memory rather than compute it every need 2015-11-21 01:48:25 +00:00
addrman_tests.cpp Creates unittests for addrman, makes addrman testable. 2015-09-24 15:20:48 -04:00
alert_tests.cpp Use BOOST_CHECK_MESSAGE() rather than BOOST_CHECK() in alerts_tests.cpp and initialize strMiscWarning before calling PartitionCheck()." 2015-10-25 05:47:02 -04:00
allocator_tests.cpp
arith_uint256_tests.cpp
base32_tests.cpp
base58_tests.cpp [Univalue] add univalue over subtree 2015-10-01 10:49:57 +02:00
base64_tests.cpp
bctest.py
bip32_tests.cpp extend bip32 tests to cover Base58c/CExtKey decode 2015-07-23 16:32:31 +02:00
bitcoin-util-test.py
bloom_tests.cpp Only use randomly created nonces in CRollingBloomFilter. 2015-07-27 19:09:39 +02:00
buildenv.py.in
checkblock_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
coins_tests.cpp Alter assumptions in CCoinsViewCache::BatchWrite 2015-11-18 12:03:50 -05:00
compress_tests.cpp
crypto_tests.cpp
dbwrapper_tests.cpp leveldbwrapper file rename to dbwrapper.* 2015-10-22 21:33:06 -04:00
getarg_tests.cpp Fix argument parsing oddity with -noX 2015-07-27 14:47:54 +02:00
hash_tests.cpp
key_tests.cpp
limitedmap_tests.cpp Add limitedmap test 2015-08-17 12:15:32 -04:00
main_tests.cpp Switch blocks to a constant-space Merkle root/branch algorithm. 2015-11-27 15:36:52 +01:00
mempool_tests.cpp Add a score index to the mempool. 2015-12-01 10:10:25 -05:00
merkle_tests.cpp Switch blocks to a constant-space Merkle root/branch algorithm. 2015-11-27 15:36:52 +01:00
miner_tests.cpp Rewrite CreateNewBlock 2015-12-01 12:09:37 -05:00
multisig_tests.cpp
netbase_tests.cpp [QA] fix netbase tests because of new CSubNet::ToString() output 2015-09-16 16:50:20 +02:00
pmt_tests.cpp Switch blocks to a constant-space Merkle root/branch algorithm. 2015-11-27 15:36:52 +01:00
policyestimator_tests.cpp Merge pull request #6134 2015-11-27 12:59:37 +01:00
pow_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
prevector_tests.cpp Prevector type 2015-11-13 18:15:20 +01:00
reverselock_tests.cpp Replace boost::reverse_lock with our own. 2015-09-03 15:13:40 -04:00
rpc_tests.cpp [RPC] Add transaction size to JSON output 2015-11-28 17:06:56 +03:00
rpc_wallet_tests.cpp [Univalue] add univalue over subtree 2015-10-01 10:49:57 +02:00
sanity_tests.cpp
scheduler_tests.cpp test: Disable scheduler test manythreads 2015-12-01 14:43:38 +01:00
script_P2SH_tests.cpp Prevector type 2015-11-13 18:15:20 +01:00
script_tests.cpp Rename OP_NOP2 to OP_CHECKLOCKTIMEVERIFY. 2015-12-15 02:01:45 -05:00
scriptnum10.h Replace scriptnum_test's normative ScriptNum implementation 2015-11-25 13:59:49 +01:00
scriptnum_tests.cpp Replace scriptnum_test's normative ScriptNum implementation 2015-11-25 13:59:49 +01:00
serialize_tests.cpp
sighash_tests.cpp [Univalue] add univalue over subtree 2015-10-01 10:49:57 +02:00
sigopcount_tests.cpp Prevector type 2015-11-13 18:15:20 +01:00
skiplist_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
streams_tests.cpp Add chainstate obfuscation to avoid spurious antivirus detection 2015-10-06 07:46:10 -07:00
test_bitcoin.cpp Store the total sig op count of a tx. 2015-12-01 10:10:25 -05:00
test_bitcoin.h Store the total sig op count of a tx. 2015-12-01 10:10:25 -05:00
timedata_tests.cpp
transaction_tests.cpp [trivial] New DEFAULT_MIN_RELAY_TX_FEE = 1000 2015-11-09 21:00:16 +01:00
txvalidationcache_tests.cpp Only call TrimToSize once per reorg/blocks disconnect 2015-10-13 01:39:38 -07:00
uint256_tests.cpp
univalue_tests.cpp [Univalue] add univalue over subtree 2015-10-01 10:49:57 +02:00
util_tests.cpp SanitizeString: Allow hypen char 2015-09-23 12:06:00 +02:00

README.md

Notes

The sources in this directory are unit test cases. Boost includes a unit testing framework, and since bitcoin already uses boost, it makes sense to simply use this framework rather than require developers to configure some other framework (we want as few impediments to creating unit tests as possible).

The build system is setup to compile an executable called "test_bitcoin" that runs all of the unit tests. The main source file is called test_bitcoin.cpp, which simply includes other files that contain the actual unit tests (outside of a couple required preprocessor directives). The pattern is to create one test file for each class or source file for which you want to create unit tests. The file naming convention is "<source_filename>_tests.cpp" and such files should wrap their tests in a test suite called "<source_filename>_tests". For an examples of this pattern, examine uint160_tests.cpp and uint256_tests.cpp.

Add the source files to /src/Makefile.test.include to add them to the build.

For further reading, I found the following website to be helpful in explaining how the boost unit test framework works: http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/.

test_bitcoin has some built-in command-line arguments; for example, to run just the getarg_tests verbosely:

test_bitcoin --log_level=all --run_test=getarg_tests

... or to run just the doubledash test:

test_bitcoin --run_test=getarg_tests/doubledash

Run test_bitcoin --help for the full list.