TestNG Annotations
In this lesson, we will see some of the annotations that TestNG provides.
We'll cover the following...
List of annotations #
TestNG supports annotations for performing various operations like:
-
@Test
annotated method is considered as a test method. This annotation can be added at class level as well. When ...