TestNG not running tests in testing suite
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;
I had to change my method access modifier to public from private to get it working .