aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unit/README
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-11-17 11:11:45 +1100
committerNeil <nyamatongwe@gmail.com>2013-11-17 11:11:45 +1100
commit1f58d727d692379306edf4ebc18ca91557ea3f69 (patch)
tree0ec54b63dbc97bdab36aa883914c721f76138a5c /test/unit/README
parent57240ad0eff0cb351ccb24bb21465ac0ba815629 (diff)
downloadscintilla-mirror-1f58d727d692379306edf4ebc18ca91557ea3f69.tar.gz
Switch unit tests to Catch framework.
Diffstat (limited to 'test/unit/README')
-rw-r--r--test/unit/README25
1 files changed, 13 insertions, 12 deletions
diff --git a/test/unit/README b/test/unit/README
index 0d70fe71f..2558d8e86 100644
--- a/test/unit/README
+++ b/test/unit/README
@@ -1,14 +1,15 @@
The test/unit directory contains unit tests for Scintilla data structures.
-The tests can be run on Windows or Linux using g++ and GNU make.
-The Google Test framework is used.
-http://code.google.com/p/googletest/
-
-Google test must be installed first.
-On Linux, install the google test packages libgtest-dev and libgtest0.
-On Windows download Google test and install it as a peer to the directory
-containing scintilla. The makefile assumes it is in ../../../../gtest-1.5.0.
-
-To run the tests:
-make
-./unitTest
+The tests can be run on Windows, OS X, or Linux using g++ and GNU make.
+The Catch test framework is used.
+https://github.com/philsquared/Catch
+The file catch.hpp is under the Boost Software License which is contained in LICENSE_1_0.txt
+
+ To run the tests on OS X or Linux:
+make test
+
+ To run the tests on Windows:
+mingw32-make test
+
+ Visual C++ (2010+) and nmake can also be used on Windows:
+nmake -f test.mak test