Framework Mode - In-memory database testing
Folder Structure
project-root/ ├── src/ │ ├── main/ │ │ └── java/ │ │ └── com/example/app/ │ │ └── (application code) │ └── test/ │ └── java/ │ └── com/example/app/ │ ├── repository/ │ │ └── (repository tests with in-memory DB) │ ├── service/ │ │ └── (service layer tests) │ └── util/ │ └── (test utilities and helpers) ├── src/test/resources/ │ └── application-test.properties ├── pom.xml └── README.md