scummvm/test
Colin Snover f037d4df16 COMMON: Allow construction of Arrays of non-copyable members
Although the previous count-constructor would never make a copy of
a member at runtime, Array<T>::reserve *may* copy-construct, so
the compiler would forbid creation of arrays of NonCopyable objects
even when the array was created only once and then never resized
(and thus never actually tried to perform a copy-construction).
2017-10-06 22:10:50 -05:00
..
audio AUDIO: Wrap around in the Timestamp constructor 2014-12-20 19:38:18 +01:00
common COMMON: Allow construction of Arrays of non-copyable members 2017-10-06 22:10:50 -05:00
cxxtest TEST: Use "/usr/bin/env python" as the shebang line in cxxtestgen.py 2015-01-18 14:41:16 -05:00
engines/wintermute WINTERMUTE: Try to "correctly" handle dir paths 2016-12-26 12:05:41 +01:00
cxxtest_mingw.h ALL: Resolve multiple clang warnings 2014-03-30 14:38:02 +02:00
module.mk TESTS: Fix tests building 2017-01-23 21:58:38 +01:00
README JANITORIAL: Add missing NL at EOF. 2011-08-07 13:53:33 +02:00

This directory contains some unit tests for ScummVM. They are based on
CxxTest <http://cxxtest.com/>, which you can find in the cxxtest
subdirectory, including its manual.

To run the unit tests, simply use "make test".