Moved unit tests close to the sources

This commit is contained in:
emeric
2021-09-29 11:57:11 +02:00
parent 6a8063640b
commit 4e9cf0d77f
18 changed files with 10 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
add_executable(test-database
Artist.cpp
Cluster.cpp
DatabaseTest.cpp
Release.cpp
Track.cpp
)
target_link_libraries(test-database PRIVATE
lmsdatabase
GTest::GTest
)
gtest_discover_tests(test-database)