12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="UTF-8"?>
-
- <phpunit bootstrap="./Tests/bootstrap.php" colors="true">
- <!--
- <php>
- <server name="SYMFONY" value="../../../../symfony/src" />
- </php>
- -->
- <testsuites>
- <testsuite name="SensioFrameworkExtraBundle">
- <directory suffix="Test.php">./Tests</directory>
- </testsuite>
- </testsuites>
-
- <filter>
- <whitelist>
- <directory>./</directory>
- <exclude>
- <directory>./Resources</directory>
- <directory>./Tests</directory>
- </exclude>
- </whitelist>
- </filter>
- </phpunit>
|