1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:17:45 +00:00

LibCore/ArgsParser: Add test suite

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.
This commit is contained in:
Jelle Raaijmakers 2021-06-07 20:01:12 +02:00 committed by Andreas Kling
parent d6a3f1fcd7
commit 0b0bce78f6
2 changed files with 210 additions and 0 deletions

View file

@ -1,5 +1,6 @@
set(
TEST_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreArgsParser.cpp
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreFileWatcher.cpp
)