What is the difference between BeforeTest and BeforeMethod in TestNG

前端 未结 9 915
南旧
南旧 2020-12-10 01:31

Both annotations runs before the @test in testNG then what is the difference between two of them.

9条回答
  •  [愿得一人]
    2020-12-10 01:42

    @BeforeTest will execute only one time before any test methods. Methods will run before executing any @Test annotated test method that is part of the tag in testNG.xml file. @BeforeMethod will execute before every method annotated with @Test.

提交回复
热议问题