FLO-wallet-core/src/test
2015-10-20 14:22:44 +02:00
..
data Merge pull request #6544 2015-08-19 17:37:52 +02:00
accounting_tests.cpp
alert_tests.cpp Use unique name for AlertNotify tempfile 2015-08-05 23:12:26 -04:00
allocator_tests.cpp
arith_uint256_tests.cpp
base32_tests.cpp
base58_tests.cpp
base64_tests.cpp
bctest.py
bignum.h
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
Checkpoints_tests.cpp chainparams: move CCheckpointData into chainparams.h 2015-07-28 15:26:50 -04:00
coins_tests.cpp Separate core memory usage computation in core_memusage.h 2015-07-20 11:17:53 -04:00
compress_tests.cpp
crypto_tests.cpp
DoS_tests.cpp TRIVIAL: Missing includes 2015-07-23 21:10:22 +02: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
Makefile
mempool_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
miner_tests.cpp TRIVIAL: Missing includes 2015-07-23 21:10:22 +02:00
mruset_tests.cpp Revert "Cache transaction validation successes" 2015-07-28 20:15:00 +02:00
multisig_tests.cpp Policy: MOVEONLY: 3 functions to policy.o: 2015-06-26 17:59:10 +02:00
netbase_tests.cpp add unit test for CNetAddr::GetGroup. 2015-08-19 17:06:42 -04:00
pmt_tests.cpp
policyestimator_tests.cpp
pow_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
README.md Unit test doublespends in new blocks 2015-07-27 15:50:21 +02:00
rpc_tests.cpp Add OP_RETURN support in createrawtransaction RPC call, add tests. 2015-08-06 20:27:52 +02:00
rpc_wallet_tests.cpp locks: don't lock cs_wallet before making rpc calls 2015-08-07 16:17:57 -04:00
sanity_tests.cpp
scheduler_tests.cpp
script_P2SH_tests.cpp Policy: MOVEONLY: Create policy/policy.h with some constants 2015-06-26 17:59:07 +02:00
script_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
scriptnum_tests.cpp
serialize_tests.cpp
sighash_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
sigopcount_tests.cpp
skiplist_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
test_bitcoin.cpp Chainparams: Replace CBaseChainParams::Network enum with string constants (suggested by Wladimir) 2015-10-20 14:22:44 +02:00
test_bitcoin.h Chainparams: Replace CBaseChainParams::Network enum with string constants (suggested by Wladimir) 2015-10-20 14:22:44 +02:00
timedata_tests.cpp
transaction_tests.cpp Includes: Cleanup around net main and wallet 2015-07-23 21:10:26 +02:00
txvalidationcache_tests.cpp Unit test doublespends in new blocks 2015-07-27 15:50:21 +02:00
uint256_tests.cpp
univalue_tests.cpp univalue: Avoid unnecessary roundtrip through double for numbers 2015-07-18 09:04:18 +02:00
util_tests.cpp rpc: Accept scientific notation for monetary amounts in JSON 2015-07-10 15:43:26 +02:00

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.

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.