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