ripper234
ripper234

Reputation: 230176

Can you better explain the semantics of TestNG's @BeforeTest annotation?

I read the relevant documentation and didn't understand it. See also this question.

Upvotes: 0

Views: 395

Answers (1)

Adeel Ansari
Adeel Ansari

Reputation: 39907

To understand that, you must understand testng.xml. Now reread the same thing,

The annotated method will be run before any test method belonging to the classes inside the <test> tag is run.

It should be clear that this annotation will only work with the methods those belong to the classes defined under <test> tag in testng.xml.

Upvotes: 1

Related Questions