Selenium Java - TestNG Integration
Given the following TestNG code, what will be the order of test execution?
@Test(priority = 2)
public void testB() { }
@Test(priority = 1)
public void testA() { }
@Test(priority = 3)
public void testC() { }