Both annotations runs before the @test in testNG then what is the difference between two of them.
@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.
@BeforeTest
@Test
@BeforeMethod