diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-04-01 22:05:58 +0200 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2016-04-25 22:19:29 +0200 |
commit | 0e3cf1963a4c5fa28f12a70b7d2f25c33580c182 (patch) | |
tree | 2ae365ad3a955c29491fb7f8f1c723e0899a2305 /CMakeLists.txt | |
parent | ac550e242be6e747f9420b705a33407652010b6c (diff) |
Implement integration test framework
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e990fbe..d97befa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -424,6 +424,23 @@ IF(TEST) ousia_xml ) + ADD_EXECUTABLE(ousia_test_integration + test/integration/Main + test/integration/TestLogger + test/integration/TestXmlParser + ) + + TARGET_LINK_LIBRARIES(ousia_test_integration + ousia_core + ousia_filesystem + ousia_html + ousia_xml + ousia_osml + ousia_osxml + ${Boost_LIBRARIES} + ${EXPAT_LIBRARIES} + ) + # Register the unit tests ADD_TEST(ousia_test_core ousia_test_core) # ADD_TEST(ousia_test_css ousia_test_css) @@ -433,6 +450,7 @@ IF(TEST) ADD_TEST(ousia_test_osml ousia_test_osml) ADD_TEST(ousia_test_osxml ousia_test_osxml) ADD_TEST(ousia_test_xml ousia_test_xml) +# ADD_TEST(ousia_test_integration ousia_test_integration) ENDIF() ################################################################################ |