neobytes/src/test
2015-05-16 00:05:57 +03:00
..
data 0.12 dirty merge'n'fix (bitcoin 0.10) 2015-04-04 19:24:37 +03:00
accounting_tests.cpp
alert_tests.cpp tests: enable alertnotify test for Windows 2014-10-31 00:04:14 -04:00
allocator_tests.cpp
base32_tests.cpp
base58_tests.cpp
base64_tests.cpp
bctest.py
bignum.h Fix all header defines 2014-11-03 16:16:40 +01:00
bip32_tests.cpp
bitcoin-util-test.py
bloom_tests.cpp Masternode Overhaul 2015-04-17 23:44:49 -07:00
buildenv.py.in
checkblock_tests.cpp Separate protocol versioning from clientversion 2014-10-29 00:24:40 -04:00
Checkpoints_tests.cpp fix few tests 2015-02-25 20:24:15 +03:00
coins_tests.cpp
compress_tests.cpp MOVEONLY: Move script/compressor out of script and put CTxOutCompressor (from 2014-10-27 13:54:37 +01:00
crypto_tests.cpp Add the RFC6979 PRNG 2014-11-20 17:22:06 +01:00
DoS_tests.cpp
getarg_tests.cpp
hash_tests.cpp
key_tests.cpp 0.12 dirty merge'n'fix (bitcoin 0.10) 2015-04-04 19:24:37 +03:00
main_tests.cpp 0.12 dirty merge'n'fix (bitcoin 0.10) 2015-04-04 19:24:37 +03:00
Makefile various (gitian) build fixes 2015-04-29 21:27:52 +03:00
mempool_tests.cpp Keep mempool consistent during block-reorgs 2015-04-06 11:38:43 +02:00
miner_tests.cpp Merge pull request #1816 2014-11-24 14:43:10 +01:00
mruset_tests.cpp
multisig_tests.cpp Avoid storing a reference passed to SignatureChecker constructors 2015-02-03 08:52:13 +01:00
netbase_tests.cpp 0.12 dirty merge'n'fix (bitcoin 0.10) 2015-04-04 19:24:37 +03:00
pmt_tests.cpp Move CMerkleBlock and CPartialMerkleTree to their own file 2014-12-05 01:57:40 -08:00
README.md Changed darkcoin references to dash 2015-03-19 12:03:14 -07:00
rpc_tests.cpp
rpc_wallet_tests.cpp
sanity_tests.cpp tests: run sanity checks in tests too 2015-01-08 12:08:14 +01:00
script_P2SH_tests.cpp Avoid storing a reference passed to SignatureChecker constructors 2015-02-03 08:52:13 +01:00
script_tests.cpp Backport of some of BIP66's tests 2015-02-05 21:26:15 -08:00
scriptnum_tests.cpp
serialize_tests.cpp
sighash_tests.cpp
sigopcount_tests.cpp boost: moveonly: split CPubKey and friends to new files 2014-10-31 01:19:37 -04:00
skiplist_tests.cpp
test_dash.cpp Merge branch '0.10' into v0.12.0.x_merge_btc010 2015-05-16 00:05:57 +03:00
timedata_tests.cpp
transaction_tests.cpp Avoid storing a reference passed to SignatureChecker constructors 2015-02-03 08:52:13 +01:00
uint256_tests.cpp
univalue_tests.cpp
util_tests.cpp Add a new test for FormatParagraph (string longer than the default width). 2014-12-06 22:49:07 +01:00
wallet_tests.cpp

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_dash" that runs all of the unit tests. The main source file is called test_dash.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/.