f808abff86
Fix JSON syntax errors in .devcontainer/devcontainer.json (removed
invalid JS-style // comments) and .devcontainer/opencode.json (removed
90+ trailing commas). Apply auto-fixes for end-of-file and trailing
whitespace issues across 100+ files. Fix SIM105 ruff violations in
benchmarks/core_circuit_breaker_bench.py (use contextlib.suppress).
Note: The security fix from issue #7478 (validate_path startswith bypass)
was already delivered to master in commit e18ac5f2. This PR as currently
structured is non-atomic (35 commits across 10+ issues) and needs
significant restructure before merge. This commit only addresses the
CI/pre-commit failures.
ISSUES CLOSED: #7478
33 lines
1006 B
Markdown
33 lines
1006 B
Markdown
# Testing Tools Examples
|
|
|
|
This directory contains examples of testing utilities and automation tools built with CleverAgents. These examples show how to create tools that help with software quality assurance.
|
|
|
|
## What You'll Find Here
|
|
|
|
- **Test Runners**: Custom test execution frameworks
|
|
- **Test Generators**: Tools that create test cases from specifications
|
|
- **Coverage Analyzers**: Utilities for understanding test coverage
|
|
- **Test Data Generators**: Tools for creating realistic test data
|
|
- **Validation Suites**: Automated checkers for various conditions
|
|
|
|
## Testing Approaches
|
|
|
|
Examples demonstrate various testing patterns:
|
|
- Unit test automation
|
|
- Integration test helpers
|
|
- Performance test tools
|
|
- Data validation tests
|
|
- API testing utilities
|
|
|
|
## Key Concepts
|
|
|
|
- Test organization and discovery
|
|
- Result reporting and formatting
|
|
- Failure analysis
|
|
- Coverage tracking
|
|
- Continuous testing patterns
|
|
|
|
---
|
|
|
|
*Examples in this directory are automatically generated from successful UAT test runs.*
|