DevOps / Maven Interview questions
How do I run a Single Test using Maven?
During development, you may run a single test class repeatedly. To run this through Maven, set the test property to a specific test case. Run the mvn test command with test property set to name of the test class you want to run.
mvn -Dtest=TestClass test
More Related questions...