Files
Crosspoint/test
Justin Mitchell 78c71f1c77 Extract book cover utilities into BookCoverUtils
Refactors book cover and metadata handling out of Epub class into a dedicated BookCoverUtils utility. Moves FootnoteEntry struct into reader activity directory. Simplifies cache clearing to use direct storage operations instead of Epub class.
2026-07-08 01:31:24 -04:00
..

Host-side gtest unit tests for crosspoint-reader.

Build and run:

  cmake -S test -B build/test
  cmake --build build/test
  ctest --test-dir build/test --output-on-failure -j

Run a single suite directly:

  cmake --build build/test --target StreamingJsonParserTest
  build/test/streaming_json_parser/StreamingJsonParserTest --gtest_filter='*'

Google Test is fetched via CMake FetchContent on first configure; the pinned
version lives in test/CMakeLists.txt.