Framework Mode - Integration testing
Folder Structure for Integration Testing Framework
integration-testing-project/
├── src/
│ ├── main/
│ │ └── java/ (or your app source code)
│ └── test/
│ ├── integration/ # Integration test cases
│ │ ├── services/ # Tests for service layer integration
│ │ ├── repositories/ # Tests for database integration
│ │ └── controllers/ # Tests for API/controller integration
│ ├── utils/ # Helper utilities for tests
│ ├── config/ # Test configuration files
│ └── mocks/ # Mock objects or test doubles
├── build.gradle (or pom.xml) # Build and dependency management
├── test-config.yaml # Environment and test settings
└── README.md