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

Tests: Implement tests for the Serenity Stream API

This commit is contained in:
sin-ack 2021-09-10 22:46:52 +00:00 committed by Ali Mohammad Pur
parent 19e13117ad
commit 2341b0159a
2 changed files with 441 additions and 0 deletions

View file

@ -3,10 +3,14 @@ set(TEST_SOURCES
TestLibCoreFileWatcher.cpp
TestLibCoreIODevice.cpp
TestLibCoreDeferredInvoke.cpp
TestLibCoreStream.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibCore)
endforeach()
# NOTE: Required because of the LocalServer tests
target_link_libraries(TestLibCoreStream LibThreading)
install(FILES long_lines.txt 10kb.txt DESTINATION usr/Tests/LibCore)