mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 09:04:30 +00:00
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.
10 lines
216 B
CMake
10 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()
|