Framework Mode - Continuous Delivery testing
Folder Structure for Continuous Delivery Testing
project-root/ ├── src/ │ └── main/ # Application source code ├── tests/ # Automated tests │ ├── unit/ # Unit tests │ ├── integration/ # Integration tests │ ├── e2e/ # End-to-end tests │ └── performance/ # Performance tests ├── ci/ # CI/CD pipeline scripts and configs ├── config/ # Environment and test configurations │ ├── dev.yaml │ ├── staging.yaml │ └── prod.yaml ├── reports/ # Test reports and logs ├── utils/ # Helper scripts and utilities └── README.md