//! Root-owned test harness crate for the Lesavka workspace. //! //! Scope: provide Cargo with a package target for explicitly registered tests //! under the repository-level `tests/` taxonomy. //! Targets: categorized test modules under `tests/` and the CI coverage //! contract consumed by the quality gate. //! Why: keeping test bodies in one categorized tree makes ownership clearer than //! a separate shim crate while still preserving normal Cargo execution. #![forbid(unsafe_code)]