Using PHPUnit, How Do You Test Only Two or More Groups?
Use comma separation without any whitespace. E.g.
phpunit --group fast,unit
Try phpunit --group "fast, unit"
or phpunit --group fast,unit
.
Command-line parameters are split on space, so you have to either wrap the value in double quotes or omit spaces.