What are the TestNG features?
TestNG is a testing framework that provides more advanced functionalities to JUnit. With TestNG, it is possible to use the following features:
-TestNG allows to run Test cases in parallel in a single TestCase class.
-TestNG allows to run multiple same TestCase classes in a single testng.xml file.
-TestNG allows to group TestCase classes under namespaces, for example with the @org.testng.group annotation.