For example, I have the following methods and I run the whole test class.
public void previous() {
.......
}
@Test(dependsOnMethods={"previous"})
public void current() {
.......
}
If that is the case, how many times will the previous methods be run?