I have multiple Junit test suites (SlowTestSuite, FastTestSuite etc). I would like to run only specific suite using maven command. e.g.
mvn clean install test -Dtest=FastTestSuite -DfailIfNoTests=false
but its not working. Just not running any test at all. Any suggestions please.
<include>**/FastTestSuite.class</include>
. Its just a requirement to run it from command line using maven command. – Sharleensharlenemvn clean test -Dtest=FastTestSuite
because its not picking up that suite so there is not test to run. – Sharleensharlene