Changeset 12746


Ignore:
Timestamp:
Mar 5, 2014, 6:38:10 PM (10 years ago)
Author:
hock@…
Message:

integrated the Google Testing Framework (gtest)

and wrote an Hello World test, to ensure the framework is working..

Files:
209 added
1 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r12349 r12746  
    4747
    4848message(STATUS "Configuring ariba version ${ariba_VERSION}")
    49 
    5049
    5150list(APPEND CMAKE_MODULE_PATH "${ariba_SOURCE_DIR}/CMakeModules")
     
    136135add_subdirectory(docu)
    137136
     137
     138# enable unit testing (in general, see the "tests/" subdirectory for the actual tests)
     139enable_testing()
     140
     141## Google Test Framework (Unit testing)
     142add_subdirectory(gtest-1.7.0)
     143
     144# Tests (for ariba code)
     145add_subdirectory(tests)
     146
     147
    138148# Install package information
    139149install(EXPORT ariba-targets
Note: See TracChangeset for help on using the changeset viewer.