Skip to content
Snippets Groups Projects
Commit abe5999b authored by Lars Bilke's avatar Lars Bilke
Browse files

Moved Tests/gtest to ThirdParty/gtest.

parent 95460d86
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
* http://www.opengeosys.org/project/license
*/
#include "gtest.h"
#include "gtest/gtest.h"
#include "FileTools.h"
#include "FileTools.cpp"
......
......@@ -12,7 +12,7 @@
*
*/
#include "gtest.h"
#include "gtest/gtest.h"
#include "quickcheck/quickcheck.hh"
#include "quicksort.h"
......
......@@ -10,7 +10,7 @@
*/
// ** INCLUDES **
#include "gtest.h"
#include "gtest/gtest.h"
TEST(BaseLib, SwapInt) {
int arg0 = 5;
......
......@@ -10,7 +10,7 @@
*/
// ** INCLUDES **
#include "gtest.h"
#include "gtest/gtest.h"
#include "SystemTools.h"
......
......@@ -4,8 +4,6 @@ IF( MSVC )
ADD_DEFINITIONS( /D_VARIADIC_MAX=10 )
ENDIF()
ADD_SUBDIRECTORY( gtest )
APPEND_SOURCE_FILES(TEST_SOURCES)
APPEND_SOURCE_FILES(TEST_SOURCES BaseLib)
APPEND_SOURCE_FILES(TEST_SOURCES GeoLib)
......
......@@ -10,7 +10,7 @@
*/
// ** INCLUDES **
#include "gtest.h"
#include "gtest/gtest.h"
// std lib
#include <cstdlib>
......
......@@ -11,7 +11,7 @@
*/
// ** INCLUDES **
#include "gtest.h"
#include "gtest/gtest.h"
/// Implementation of the googletest testrunner
int main(int argc, char* argv[])
......
......@@ -6,4 +6,6 @@ ENDIF()
SET_PROPERTY(TARGET logog PROPERTY FOLDER "logog")
SET_PROPERTY(TARGET test-logog PROPERTY FOLDER "logog")
ADD_SUBDIRECTORY(zlib)
\ No newline at end of file
ADD_SUBDIRECTORY(zlib)
ADD_SUBDIRECTORY(gtest)
\ No newline at end of file
......@@ -22,4 +22,8 @@ Command line option parser. Is integrated directly.
## zlib ##
Compression algorithms. Is integrated directly.
\ No newline at end of file
Compression algorithms. Is integrated directly.
## gtest ##
Google testing framework for unit tests. Is integrated directly.
\ No newline at end of file
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment