I have a directory tests
where I store all my tests.
Hierarchy of tests
dirrectory
tests->
ApplicationTests->
IntegrationTests->
Factory->
Service->
UnitTests->
How can I make phpunit launch tests only from for example Service
directory, instead of the whole tests
directory? I read about @Groups
, but I think that's not what I'm looking for and it would be best if I would not need to edit config files, but some how, do it from the command line.