I\'m trying to run a testing suite using XML and TestNG, but I\'m always getting the same message using both: Eclipse and the command line:
[TestNG] Running: /
You could also check imports for imported Test annotation, should be:
import org.testng.annotations.Test; @Test public myTest(){ ... }
and not for example:
import org.junit.Test;