consolidate the tests locations

This commit is contained in:
StellaOps Bot
2025-12-26 01:48:24 +02:00
parent 17613acf57
commit 39359da171
2031 changed files with 2607 additions and 476 deletions

View File

@@ -154,9 +154,13 @@ The codebase follows a monorepo pattern with modules under `src/`:
### Test Layout
- Module tests: `StellaOps.<Module>.<Component>.Tests`
- Shared fixtures/harnesses: `StellaOps.<Module>.Testing`
- **Module tests:** `src/<Module>/__Tests/StellaOps.<Module>.<Component>.Tests/`
- **Global tests:** `src/__Tests/{Category}/` (Integration, Acceptance, Load, Security, Chaos, E2E, etc.)
- **Shared testing libraries:** `src/__Tests/__Libraries/StellaOps.*.Testing/`
- **Benchmarks & golden corpus:** `src/__Tests/__Benchmarks/`
- **Ground truth datasets:** `src/__Tests/__Datasets/`
- Tests use xUnit, Testcontainers for PostgreSQL integration tests
- See `src/__Tests/AGENTS.md` for detailed test infrastructure guidance
### Documentation Updates