Framework Mode - Test suites with @Suite
Folder Structure
src/
└── test/
└── java/
└── com/
└── example/
├── pages/
│ ├── LoginPage.java
│ └── DashboardPage.java
├── tests/
│ ├── LoginTest.java
│ ├── DashboardTest.java
│ └── AllTestsSuite.java
└── utils/
├── WebDriverFactory.java
└── TestUtils.java