TestNG: Threading Questions
When will TestNG run tests in the same thread?
The quick answer is, when test methods depend on each other. The important thing to note here is that it is when @Test annotated methods depend on each other.
One way to solve this problem is to declare that the test methods depend on each [...]