FLO-wallet-core/src/test
2017-09-19 18:39:26 -07:00
..
data Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
addrman_tests.cpp
allocator_tests.cpp
amount_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
arith_uint256_tests.cpp
base32_tests.cpp
base58_tests.cpp Litecoin: M prefix added for script addresses 2017-09-19 18:22:34 -07:00
base64_tests.cpp
bip32_tests.cpp
blockencodings_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
bloom_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
bswap_tests.cpp
checkqueue_tests.cpp
coins_tests.cpp
compress_tests.cpp Litecoin: Protocol and default settings 2017-09-19 18:22:34 -07:00
crypto_tests.cpp
cuckoocache_tests.cpp
dbwrapper_tests.cpp
DoS_tests.cpp
getarg_tests.cpp
hash_tests.cpp
key_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
limitedmap_tests.cpp
main_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
Makefile
mempool_tests.cpp
merkle_tests.cpp
miner_tests.cpp Litecoin: Protocol and default settings 2017-09-19 18:22:34 -07:00
multisig_tests.cpp
net_tests.cpp
netbase_tests.cpp
pmt_tests.cpp
policyestimator_tests.cpp
pow_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
prevector_tests.cpp
raii_event_tests.cpp
random_tests.cpp
README.md Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
reverselock_tests.cpp
rpc_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
sanity_tests.cpp
scheduler_tests.cpp
script_P2SH_tests.cpp
script_tests.cpp
scriptnum10.h
scriptnum_tests.cpp
scrypt_tests.cpp Litecoin: enable support for SSE2 instructions in scrypt via configure --enable-sse2 (#362) 2017-09-19 18:39:26 -07:00
serialize_tests.cpp
sighash_tests.cpp
sigopcount_tests.cpp
skiplist_tests.cpp
streams_tests.cpp
test_bitcoin_fuzzy.cpp
test_bitcoin_main.cpp
test_bitcoin.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00
test_bitcoin.h
testutil.cpp
testutil.h
timedata_tests.cpp
torcontrol_tests.cpp
transaction_tests.cpp Litecoin: Adjust fee system 2017-09-19 18:22:34 -07:00
txvalidationcache_tests.cpp
uint256_tests.cpp
univalue_tests.cpp
util_tests.cpp
versionbits_tests.cpp Litecoin: Fix various tests 2017-09-19 18:22:34 -07:00

Notes

The sources in this directory are unit test cases. Boost includes a unit testing framework, and since litecoin 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_litecoin" 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/.