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:
/
I had the same problem and here is my results: In my project I had test file in
src/test/java/com/temporary/core
and in the same time I had resources for the test in
src/test/resources/com/temporary/Core
As I found, testng tried to find test file in the second directory.
When I renamed directory with resources from Core to tcore, the problem was fixed.