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

Tests: Add base structure for LibPDF unit tests

Add a unit test for each sample pdf file that currently exists in the
anon user's `~/Document/pdf` directory.
- linear.pdf
- non-linearized.pdf
- complex.pdf

Each test ensures that the pdf document is parsed and that the page
count is the expected one.
This commit is contained in:
Simon Woertz 2021-11-16 21:02:55 +01:00 committed by Linus Groh
parent e687e5ba74
commit 07a557194c
3 changed files with 45 additions and 0 deletions

View file

@ -11,6 +11,7 @@ add_subdirectory(LibIMAP)
add_subdirectory(LibJS)
add_subdirectory(LibM)
add_subdirectory(LibMarkdown)
add_subdirectory(LibPDF)
add_subdirectory(LibPthread)
add_subdirectory(LibRegex)
add_subdirectory(LibSQL)