Framework Mode - Testing vs debugging distinction
Folder Structure of a Typical Testing Project
testing-project/ ├── tests/ # Automated test scripts │ ├── unit/ # Unit tests │ ├── integration/ # Integration tests │ └── e2e/ # End-to-end tests ├── src/ # Application source code ├── debug/ # Debugging scripts and logs │ ├── logs/ # Logs collected during debugging │ └── scripts/ # Helper scripts for debugging ├── reports/ # Test execution reports ├── config/ # Configuration files └── utils/ # Utility functions for tests