Unit tests

From OpenMW Wiki
Revision as of 19:38, 28 November 2020 by Ptmikheev (talk | contribs) (Created page with "OpenMW unit tests are here: [https://gitlab.com/OpenMW/openmw/-/tree/master/apps/openmw_test_suite apps/openmw_test_suite]. It uses [https://github.com/google/googletest gtest...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

OpenMW unit tests are here: apps/openmw_test_suite. It uses gtest framework.

If you add a new component, consider to add unit tests for it as well.

How to run unit tests

Install dependencies (example for Ubuntu):

sudo apt install libgtest-dev libgmock-dev

Configure OpenMW to build tests:

mkdir build && cd build
cmake .. -DBUILD_UNITTESTS=ON
make

Run all tests:

./openmw_test_suite

Run some tests:

./openmw_test_suite --gtest_filter='SettingsFileParserTest*'