Framework Mode - Unit testing
Folder Structure for Unit Testing Framework
project-root/ ├── src/ │ └── main_code/ # Your application source code │ └── ... ├── tests/ # Unit test files │ ├── test_module1.py │ ├── test_module2.py │ └── ... ├── fixtures/ # Test data and setup helpers │ └── ... ├── utils/ # Utility functions for tests │ └── ... ├── requirements.txt # Dependencies ├── pytest.ini # Test runner configuration └── README.md