Framework Mode - Shift-left testing
Folder Structure for Shift-left Testing Framework
shift_left_testing_project/ ├── src/ │ ├── main_code/ # Application source code │ ├── unit_tests/ # Unit tests close to code │ ├── integration_tests/ # Integration tests │ ├── static_analysis/ # Static code analysis configs and scripts │ └── test_utils/ # Helpers and utilities for tests ├── ci_cd_pipeline/ # CI/CD scripts and configs ├── docs/ # Documentation about testing strategy ├── config/ # Environment and test configs │ ├── dev.env # Development environment variables │ ├── test.env # Test environment variables │ └── prod.env # Production environment variables └── reports/ # Test reports and logs