Exercise 3: Add JUnit 5 Tag to One Test Method

This exercise helps you to understand how you can add one JUnit 5 tag to one test method. You can finish this exercise by following these steps:

1. Open the JUnit5TagExerciseTest class that’s found from the com.cleantestautomation.junit5intro package.

2. Ensure that the testMethodFoundFromRootClass() method, that’s found from the JUnit5TagExerciseTest class, has the tag: ‘unitTest’.

3. Run your tests with Maven or Gradle. Make sure that only the testMethodFoundFromRootClass() method is run.