@Test(priority=2)
public class PositiveTests {
public void loginTest() {
}
@Test(priority=1)
public class NegativeTests {
public void negativeLoginTest() {
}
TestNg.xml
<classes>
<class name="com.herokuapp.theinternet.PositiveTests" />
<class name="com.herokuapp.theinternet.NegativeTests">
</classes>
-->> Will the priority work here? Which class will run first? Positive Test or Negative Test?