diff options
author | Ted Gould <ted@gould.cx> | 2014-03-25 08:31:08 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-03-25 08:31:08 -0500 |
commit | ff7c955f16c4692d2071d9b0ad902af4719468f8 (patch) | |
tree | 521baf540302bdc5d335f4ccd6159ff4fe433b74 /tests/CMakeLists.txt | |
parent | 2dc2db93122060318cbba27fb706226aed1cf17e (diff) | |
download | ayatana-indicator-sound-ff7c955f16c4692d2071d9b0ad902af4719468f8.tar.gz ayatana-indicator-sound-ff7c955f16c4692d2071d9b0ad902af4719468f8.tar.bz2 ayatana-indicator-sound-ff7c955f16c4692d2071d9b0ad902af4719468f8.zip |
Greeter list base object test
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r-- | tests/CMakeLists.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9b0586a..d5bb82a 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -158,3 +158,23 @@ add_test(media-player-user-test-timeout media-player-user-test --gtest_filter=MediaPlayerUserTest.TimeoutTest ) +########################### +# Greeter List +########################### + +include_directories(${CMAKE_SOURCE_DIR}/src) +add_executable (greeter-list-test greeter-list.cc) +target_link_libraries ( + greeter-list-test + indicator-sound-service-lib + vala-mocks-lib + gtest + ${SOUNDSERVICE_LIBRARIES} + ${TEST_LIBRARIES} +) + +# Split tests to work around libaccountservice sucking +add_test(greeter-list-test-basic + greeter-list-test --gtest_filter=GreeterListTest.BasicObject +) + |