test/playlist: unit tests for the playlist plugins

Only "pls" for now.
This commit is contained in:
Max Kellermann
2025-03-10 14:13:52 +01:00
parent 2d3271859f
commit 898e0a2bc4
6 changed files with 189 additions and 0 deletions

19
test/playlist/meson.build Normal file
View File

@@ -0,0 +1,19 @@
test(
'TestPlaylistPlugins',
executable(
'TestPlaylistPlugins',
'PlaylistUtil.cxx',
'TestPlsPlaylistPlugin.cxx',
'../../src/SongSave.cxx',
'../../src/TagSave.cxx',
'../../src/TagFile.cxx',
include_directories: inc,
dependencies: [
gtest_dep,
playlist_glue_dep,
archive_glue_dep,
input_glue_dep,
decoder_glue_dep,
],
),
)