123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit bootstrap="tests/bootstrap.php"
- colors="true" convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- >
- <testsuites>
- <testsuite name="Graph Test Suite">
- <directory>./tests/</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory>./src/</directory>
- </whitelist>
- </filter>
- </phpunit>
|