aboutsummaryrefslogtreecommitdiff
path: root/src/test/rpc_wallet_tests.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3837Wladimir J. van der Laan2014-06-021-0/+87
|\ | | | | | | 75ebced added many rpc wallet tests (Alon Muroch)
| * added many rpc wallet testsAlon Muroch2014-04-011-0/+87
| | | | | | | | | | | | | | | | | | | | | | | | deleted the empty no throw test in rpc_wallet_tests line 65 fixed some comments starting verify tests finished verify message tests changed some comments
* | Add required locks in testsWladimir J. van der Laan2014-04-231-1/+1
|/ | | | Unit tests with DEBUG_LOCKORDER were running into assertions.
* Add licenses for tests and test dataWladimir J. van der Laan2014-03-181-0/+4
| | | | | | | | - Add license headers to source files (years based on commit dates) in `src/test` as well as `qa` - Add `README.md` to `src/test/data` specifying MIT license Fixes #3848
* Unit test fixes for AssertLockHeld / -DDEBUG_LOCKORDERGavin Andresen2014-01-241-0/+7
| | | | | | | | | Unit tests would fail if compiled with -DDEBUG_LOCKORDER (AssertLockHeld() would fail; AssertLockHeld() relies on the DEBUG_LOCKORDER code to keep track of locks held). Fixed by LOCK'ing the wallet mutex in the unit tests that manipulate the wallet.
* Split off rpc_wallet_testsWladimir J. van der Laan2013-12-041-0/+82
Split wallet tests from other RPC tests. Now no #ifdef ENABLE_WALLET are needed anymore in either file.