Quality & Testing
Documentation for Jaunty quality assurance, testing strategies, and code coverage.
Reports
reports/PRODUCTION-READINESS-2026-07-02.md- Production readiness assessment (July 2026)
Code Coverage
code-coverage.md- How to run coverage, whatcoverage.runsettingsdoes, and the 2026-08-27 baselinereports/COVERAGE-GAPS-2026-07-04.md- Coverage gap inventory (July 2026; older dotCover analysis archived under../99-archive/2026-02-code-coverage/)
Quality Standards
Jaunty maintains high quality through:
- High test coverage - Target: 90%+ line coverage
- Performance benchmarks - Regular performance testing
- Code review - All changes reviewed against CODE-REVIEW.md
- Documentation - All public APIs documented
For Contributors
Before Submitting PRs
- All new code has test coverage
- Performance-sensitive code has benchmarks
- Documentation updated
- Code review checklist completed
Running Tests
bash
# Run all tests
dotnet test
# Run with coverage
dotnet test /p:CollectCoverage=true
# Run specific test project
dotnet test tests/Jaunty.Tests
See Also
| Document | Purpose |
|---|---|
../03-development/code-review-checklist.md |
Code review checklist |
../06-releases/ |
Release documentation |