# Dummy plugin used by ctkAbstractPluginFactoryTest1 add_definitions( -DCTKDummyPlugin) ctkMacroBuildLib( NAME "CTKDummyPlugin" EXPORT_DIRECTIVE "CTK_DUMMY_EXPORT" SRCS ctkDummyPlugin.h ctkDummyPlugin.cpp TARGET_LIBRARIES ${CTK_BASE_LIBRARIES} LIBRARY_TYPE "SHARED" ) remove_definitions(-DCTKDummyPlugin) set(KIT ${PROJECT_NAME}) # # Test sources # set(KITTests_SRCS ctkAbstractFactoryTest1.cpp ctkAbstractLibraryFactoryTest1.cpp ctkAbstractObjectFactoryTest1.cpp ctkAbstractPluginFactoryTest1.cpp ctkAbstractQObjectFactoryTest1.cpp ctkBackTraceTest.cpp ctkBooleanMapperTest.cpp ctkCallbackTest1.cpp ctkCommandLineParserTest1.cpp ctkCoreSettingsTest.cpp ctkCoreTestingMacrosTest.cpp ctkCoreTestingUtilitiesTest.cpp ctkExceptionTest.cpp ctkFileLoggerTest.cpp ctkHighPrecisionTimerTest.cpp ctkLinearValueProxyTest.cpp ctkLoggerTest1.cpp ctkModelTesterTest1.cpp ctkModelTesterTest2.cpp ctkUtf8Test1.cpp ctkUtilsCopyDirRecursivelyTest1.cpp ctkUtilsIsDirEmptyTest1.cpp ctkUtilsQtHandleToStringTest1.cpp ctkUtilsTest.cpp ctkUtilsTest1.cpp ctkUtilsTest2.cpp ctkUtilsTest3.cpp ctkUtilsTest4.cpp ctkDependencyGraphTest1.cpp ctkDependencyGraphTest2.cpp ctkPimplTest1.cpp ctkScopedCurrentDirTest1.cpp ctkSingletonTest1.cpp ctkWorkflowTest1.cpp ctkWorkflowTest2.cpp ctkWorkflowTest3.cpp ) if(HAVE_BFD) list(APPEND KITTests_SRCS ctkBinaryFileDescriptorTest1.cpp ) endif() include_directories( ${CMAKE_SOURCE_DIR}/Libs/Testing ${CMAKE_CURRENT_BINARY_DIR} ) create_test_sourcelist(Tests ${KIT}CppTests.cpp ${KITTests_SRCS} #EXTRA_INCLUDE TestingMacros.h ) set(TestsToRun ${Tests}) remove(TestsToRun ${KIT}CppTests.cpp) set(LIBRARY_NAME ${PROJECT_NAME}) # # Tests Helpers sources # set(Tests_Helpers_SRCS ctkBranchingWorkflowStep.h ctkExampleDerivedWorkflowStep.cpp ctkExampleDerivedWorkflowStep.h ctkExampleWorkflowStepUsingSignalsAndSlots.cpp ctkExampleWorkflowStepUsingSignalsAndSlots.h ctkSingletonTestHelper.cpp ctkSingletonTestHelper.h ) if(HAVE_BFD) ctk_add_executable_utf8(ctkBinaryFileDescriptorTestHelper ctkBinaryFileDescriptorTestHelper.cpp) endif() if(MSVC) add_definitions( /D _CRT_SECURE_NO_WARNINGS) endif() # # Test executable # ctk_add_executable_utf8(${KIT}CppTests ${Tests} ${Tests_Helpers_SRCS} ${Tests_Helpers_MOC_CPP}) target_link_libraries(${KIT}CppTests ${LIBRARY_NAME} ${CTK_BASE_LIBRARIES} CTKDummyPlugin) find_package(Qt${CTK_QT_VERSION} COMPONENTS Test Widgets REQUIRED) target_link_libraries(${KIT}CppTests Qt${CTK_QT_VERSION}::Test Qt${CTK_QT_VERSION}::Widgets ) # Configure CMake Qt automatic code generation set_target_properties(${KIT}CppTests PROPERTIES AUTOMOC ON ) if(UNIX AND NOT APPLE) target_link_libraries(${KIT}CppTests rt) endif() # # Add Tests # SIMPLE_TEST( ctkAbstractFactoryTest1 ) SIMPLE_TEST( ctkAbstractLibraryFactoryTest1 $ ) SIMPLE_TEST( ctkAbstractObjectFactoryTest1 ) SIMPLE_TEST( ctkAbstractPluginFactoryTest1 $ ) SIMPLE_TEST( ctkAbstractQObjectFactoryTest1 ) if(CMAKE_BUILD_TYPE MATCHES "Debug") SIMPLE_TEST( ctkBackTraceTest ) endif() if(HAVE_BFD) SIMPLE_TEST( ctkBinaryFileDescriptorTest1 $ ) endif() SIMPLE_TEST( ctkBooleanMapperTest ) SIMPLE_TEST( ctkCallbackTest1 ) SIMPLE_TEST( ctkCommandLineParserTest1 ) SIMPLE_TEST( ctkCoreSettingsTest ) SIMPLE_TEST( ctkCoreTestingMacrosTest ) SIMPLE_TEST( ctkCoreTestingUtilitiesTest ) SIMPLE_TEST( ctkDependencyGraphTest1 ) SIMPLE_TEST( ctkDependencyGraphTest2 ) SIMPLE_TEST( ctkExceptionTest ) SIMPLE_TEST( ctkFileLoggerTest ) SIMPLE_TEST( ctkHighPrecisionTimerTest ) SIMPLE_TEST( ctkLinearValueProxyTest ) SIMPLE_TEST( ctkLoggerTest1 ) SIMPLE_TEST( ctkModelTesterTest1 ) SIMPLE_TEST( ctkModelTesterTest2 ) SIMPLE_TEST( ctkPimplTest1 ) SIMPLE_TEST( ctkScopedCurrentDirTest1 ) SIMPLE_TEST( ctkSingletonTest1 ) SIMPLE_TEST( ctkUtilsCopyDirRecursivelyTest1 ) SIMPLE_TEST( ctkUtilsIsDirEmptyTest1 ) SIMPLE_TEST( ctkUtilsQtHandleToStringTest1 ) SIMPLE_TEST( ctkUtilsTest ) SIMPLE_TEST( ctkUtilsTest1 ) SIMPLE_TEST( ctkUtilsTest2 ) SIMPLE_TEST( ctkUtilsTest3 ) SIMPLE_TEST( ctkUtilsTest4 ) SIMPLE_TEST( ctkWorkflowTest1 ) SIMPLE_TEST( ctkWorkflowTest2 ) SIMPLE_TEST( ctkWorkflowTest3 )