Framework Mode - Continuous Integration testing
Folder Structure for Continuous Integration Testing
ci-testing-project/
├── src/
│ └── main/ # Application source code
├── tests/ # Automated test scripts
│ ├── unit/ # Unit tests
│ ├── integration/ # Integration tests
│ └── e2e/ # End-to-end tests
├── ci/ # CI pipeline scripts and configs
│ ├── Jenkinsfile # Jenkins pipeline definition
│ ├── github-actions.yml # GitHub Actions workflow
│ └── scripts/ # Helper scripts for CI
├── config/ # Configuration files
│ ├── test-config.yaml # Test environment configs
│ └── credentials.env # Secure credentials (not committed)
├── reports/ # Test reports generated by CI
└── README.md # Project documentation