Framework Mode - XML and HTML reports
Folder Structure
project-root/ ├── src/ │ └── test/ │ └── java/ │ └── com/example/tests/ │ ├── LoginTest.java │ └── UserProfileTest.java ├── test-results/ │ ├── xml/ │ │ └── TEST-com.example.tests.LoginTest.xml │ └── html/ │ └── index.html ├── pom.xml └── junit-platform.properties
This structure separates source tests and test results. XML reports go to test-results/xml, HTML reports to test-results/html.