jaunty Quality › Quality & Testing

Quality & Testing

Documentation for Jaunty quality assurance, testing strategies, and code coverage.


Reports

Code Coverage


Quality Standards

Jaunty maintains high quality through:

  1. High test coverage - Target: 90%+ line coverage
  2. Performance benchmarks - Regular performance testing
  3. Code review - All changes reviewed against CODE-REVIEW.md
  4. 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