123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- # Dummy plugin used by ctkAbstractPluginFactoryTest1
- ADD_DEFINITIONS( -DCTKDummyPlugin)
- ctkMacroBuildLib(
- NAME "CTKDummyPlugin"
- EXPORT_DIRECTIVE "CTK_DUMMY_EXPORT"
- SRCS ctkDummyPlugin.h ctkDummyPlugin.cpp
- MOC_SRCS "ctkDummyPlugin.h"
- TARGET_LIBRARIES ${CTK_BASE_LIBRARIES}
- LIBRARY_TYPE "SHARED"
- DISABLE_WRAP_PYTHONQT
- )
- GET_TARGET_PROPERTY(ctkDummyPluginPATH "CTKDummyPlugin" LOCATION)
- REMOVE_DEFINITIONS(-DCTKDummyPlugin)
- SET(KIT ${PROJECT_NAME})
- #
- # Test sources
- #
- SET(KITTests_SRCS
- ctkAbstractFactoryTest1.cpp
- ctkAbstractLibraryFactoryTest1.cpp
- ctkAbstractObjectFactoryTest1.cpp
- ctkAbstractPluginFactoryTest1.cpp
- ctkAbstractQObjectFactoryTest1.cpp
- ctkCallbackTest1.cpp
- ctkCheckableModelHelperTest1.cpp
- ctkCommandLineParserTest1.cpp
- ctkErrorLogModelTest1.cpp
- ctkErrorLogModelTest2.cpp
- ctkErrorLogModelTest3.cpp
- ctkHistogramTest1.cpp
- ctkLoggerTest1.cpp
- ctkModelTesterTest1.cpp
- ctkModelTesterTest2.cpp
- ctkUtilsClosestPowerOfTenTest1.cpp
- ctkUtilsOrderOfMagnitudeTest1.cpp
- ctkUtilsSignificantDecimalsTest1.cpp
- ctkUtilsTest1.cpp
- ctkUtilsTest2.cpp
- ctkUtilsTest3.cpp
- ctkUtilsTest4.cpp
- ctkDependencyGraphTest1.cpp
- ctkDependencyGraphTest2.cpp
- ctkPimplTest1.cpp
- ctkScopedCurrentDirTest1.cpp
- ctkSingletonTest1.cpp
- ctkTransferFunctionTest1.cpp
- ctkTransferFunctionRepresentationTest1.cpp
- ctkWorkflowTest1.cpp
- ctkWorkflowTest2.cpp
- ctkWorkflowTest3.cpp
- )
- IF(HAVE_BFD)
- LIST(APPEND KITTests_SRCS
- ctkBinaryFileDescriptorTest1.cpp
- )
- ENDIF()
- 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
- )
- SET(Tests_Helpers_MOC_SRCS
- ctkExampleWorkflowStepUsingSignalsAndSlots.h
- )
- SET(Tests_Helpers_MOC_CPP)
- QT4_WRAP_CPP(Tests_Helpers_MOC_CPP ${Tests_Helpers_MOC_SRCS})
- IF(HAVE_BFD)
- ADD_EXECUTABLE(ctkBinaryFileDescriptorTestHelper ctkBinaryFileDescriptorTestHelper.cpp)
- ENDIF()
- IF(WIN32)
- ADD_DEFINITIONS( /D _CRT_SECURE_NO_WARNINGS)
- ENDIF()
- #
- # Test executable
- #
- ADD_EXECUTABLE(${KIT}CppTests ${Tests} ${Tests_Helpers_SRCS} ${Tests_Helpers_MOC_CPP})
- TARGET_LINK_LIBRARIES(${KIT}CppTests ${LIBRARY_NAME} ${CTK_BASE_LIBRARIES} CTKDummyPlugin)
- SET( KIT_TESTS ${CPP_TEST_PATH}/${KIT}CppTests)
- MACRO( SIMPLE_TEST TESTNAME )
- ADD_TEST( ${TESTNAME} ${KIT_TESTS} ${TESTNAME} )
- SET_PROPERTY(TEST ${TESTNAME} PROPERTY LABELS ${PROJECT_NAME})
- ENDMACRO( SIMPLE_TEST )
- #
- # Add Tests
- #
- SIMPLE_TEST( ctkAbstractFactoryTest1 )
- ADD_TEST( ctkAbstractLibraryFactoryTest1 ${KIT_TESTS} ctkAbstractLibraryFactoryTest1 ${ctkDummyPluginPATH})
- SET_PROPERTY(TEST ctkAbstractLibraryFactoryTest1 PROPERTY LABELS ${PROJECT_NAME})
- SIMPLE_TEST( ctkAbstractObjectFactoryTest1 )
- ADD_TEST( ctkAbstractPluginFactoryTest1 ${KIT_TESTS} ctkAbstractPluginFactoryTest1 ${ctkDummyPluginPATH})
- SET_PROPERTY(TEST ctkAbstractPluginFactoryTest1 PROPERTY LABELS ${PROJECT_NAME})
- SIMPLE_TEST( ctkAbstractQObjectFactoryTest1 )
- IF(HAVE_BFD)
- ADD_TEST(NAME ctkBinaryFileDescriptorTest1 COMMAND ${KIT_TESTS} ctkBinaryFileDescriptorTest1 $<TARGET_FILE:ctkBinaryFileDescriptorTestHelper>)
- SET_PROPERTY(TEST ctkBinaryFileDescriptorTest1 PROPERTY LABELS ${PROJECT_NAME})
- ENDIF()
- SIMPLE_TEST( ctkCallbackTest1 )
- SIMPLE_TEST( ctkCheckableModelHelperTest1 )
- SIMPLE_TEST( ctkCommandLineParserTest1 )
- SIMPLE_TEST( ctkDependencyGraphTest1 )
- SIMPLE_TEST( ctkDependencyGraphTest2 )
- SIMPLE_TEST( ctkErrorLogModelTest1 )
- SIMPLE_TEST( ctkErrorLogModelTest2 )
- SIMPLE_TEST( ctkErrorLogModelTest3 )
- SIMPLE_TEST( ctkHistogramTest1 )
- SIMPLE_TEST( ctkLoggerTest1 )
- SET_TESTS_PROPERTIES(ctkErrorLogModelTest3 PROPERTIES PASS_REGULAR_EXPRESSION
- "This is a qDebug message\nThis is a std::cerr message\nThis is a qWarning message\nThis is a std::cout message\nThis is a qCritical message\n")
- SIMPLE_TEST( ctkModelTesterTest1 )
- SIMPLE_TEST( ctkModelTesterTest2 )
- SIMPLE_TEST( ctkPimplTest1 )
- SIMPLE_TEST( ctkScopedCurrentDirTest1 )
- SIMPLE_TEST( ctkSingletonTest1 )
- SIMPLE_TEST( ctkTransferFunctionTest1 )
- SIMPLE_TEST( ctkTransferFunctionRepresentationTest1 )
- SIMPLE_TEST( ctkUtilsClosestPowerOfTenTest1 )
- SIMPLE_TEST( ctkUtilsOrderOfMagnitudeTest1 )
- SIMPLE_TEST( ctkUtilsSignificantDecimalsTest1 )
- SIMPLE_TEST( ctkUtilsTest1 )
- SIMPLE_TEST( ctkUtilsTest2 )
- SIMPLE_TEST( ctkUtilsTest3 )
- SIMPLE_TEST( ctkUtilsTest4 )
- SIMPLE_TEST( ctkWorkflowTest1 )
- SIMPLE_TEST( ctkWorkflowTest2 )
- SIMPLE_TEST( ctkWorkflowTest3 )
|