I want to run single test class from command line using Maven and TestNG
Things that doesn\'t work:
mvn -Dtest=ClassName test
I have de
I would suggest to try something like
mvn test -Dincludes=rs/magrathea/TestClassName
although I haven't tested this myself.