1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:27:36 +00:00

LibCore: Add unit test for File::read_line

This commit is contained in:
coderdreams 2021-05-30 12:14:16 -03:00 committed by Ali Mohammad Pur
parent 714a96619f
commit 9ffb3e7e30
4 changed files with 66 additions and 0 deletions

View file

@ -2,8 +2,11 @@ set(
TEST_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreArgsParser.cpp
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreFileWatcher.cpp
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreIODevice.cpp
)
foreach(source ${TEST_SOURCES})
serenity_test(${source} LibCore)
endforeach()
install(FILES long_lines.txt DESTINATION usr/Tests/LibCore)