Is it possible to specify which test suite to run from a configuration file via the command line test runner? For example, if I have the following xml configuration:
<phpunit ...>
<testsuites>
<testsuite name="My Test Suite 1">
<directory>./MyTestSuite1/</directory>
</testsuite>
<testsuite name="My Test Suite 2">
<directory>./MyTestSuite2/</directory>
</testsuite>
</testsuites>
...
</phpunit>
Can I have it run only "My Test Suite 1"?
phpunit Suitename Path/To/AllSuites.phpor other way round. Also, checkphpunit --helpand phpunit.de/manual/3.4/en/textui.html - Gordon