1 Compiling/running automated tests
2 ---------------------------------
4 Automated tests will be automatically compiled if dependencies were met in configure
5 and tests weren't explicitly disabled.
7 There are two scripts for running tests:
9 * ``qa/zcash/full-test-suite.sh``, to run the main test suite
10 * ``qa/pull-tester/rpc-tests.sh``, to run the RPC tests.
12 The main test suite uses two different testing frameworks. Tests using the Boost
13 framework are under ``src/test/``; tests using the Google Test/Google Mock
14 framework are under ``src/gtest/`` and ``src/wallet/gtest/``. The latter framework
15 is preferred for new Zcash unit tests.
17 RPC tests are implemented in Python under the ``qa/rpc-tests/`` directory.