diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2021-06-07 20:01:12 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-08 11:30:58 +0200 |
commit | 0b0bce78f60c54bd9d91dedc37258a6d75cf5053 (patch) | |
tree | 248b11cf4a3c861c96a62f4012db591e55a5f503 /Tests/LibCore/CMakeLists.txt | |
parent | d6a3f1fcd7e5458cdf0cc777e159ebadebbd2cd1 (diff) | |
download | serenity-0b0bce78f60c54bd9d91dedc37258a6d75cf5053.zip |
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.
Diffstat (limited to 'Tests/LibCore/CMakeLists.txt')
-rw-r--r-- | Tests/LibCore/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/LibCore/CMakeLists.txt b/Tests/LibCore/CMakeLists.txt index 1a949bfd2f..934d2982a2 100644 --- a/Tests/LibCore/CMakeLists.txt +++ b/Tests/LibCore/CMakeLists.txt @@ -1,5 +1,6 @@ set( TEST_SOURCES + ${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreArgsParser.cpp ${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreFileWatcher.cpp ) |