Age | Commit message (Collapse) | Author |
|
|
|
could once be renamed from /src/wallet to /src/legacywallet.
|
|
This changes the TestingSetup fixture to be per-unit-test rather than global.
Most tests don't need it, so it's only invoked in a few.
|
|
listsinceblock, listtransactions, listlockunspent, listaccounts
listaddressgroupings
|
|
|
|
Put `test/rpc_wallet_tests.cpp` through clang-format.
|
|
Fixed issue #4209 where using setaccount with a foreign
address causes the address to be added to your receiving addresses.
|
|
75ebced added many rpc wallet tests (Alon Muroch)
|
|
Unit tests with DEBUG_LOCKORDER were running into assertions.
|
|
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 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 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 wallet tests from other RPC tests.
Now no #ifdef ENABLE_WALLET are needed anymore in either file.
|