mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
0b0bce78f6
This adds a very basic test suite for ArgsParser that we can use to set a baseline of functionality that we want to make sure keeps working.
9 lines
216 B
CMake
9 lines
216 B
CMake
set(
|
|
TEST_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreArgsParser.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreFileWatcher.cpp
|
|
)
|
|
|
|
foreach(source ${TEST_SOURCES})
|
|
serenity_test(${source} LibCore)
|
|
endforeach()
|