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: /
In my case, the @Test annotation was imported automatically by IDE as import org.junit.Test.
import org.junit.Test
After changing it to import org.testng.annotations.Test the tests got picked up correctly.
import org.testng.annotations.Test