Create and run a JUnit test suite using @Suite
Preconditions (2)
Step 1: Create a new Java class named AllTestsSuite
Step 2: Annotate the class with @Suite and @SelectClasses
Step 3: Include the two existing test classes in @SelectClasses
Step 4: Run the AllTestsSuite class as a JUnit test
Step 5: Observe that all tests from the included classes run
✅ Expected Result: All test methods from the specified test classes run successfully when running the suite class