Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <phpunit backupGlobals="true" backupStaticAttributes="false" bootstrap="test/bootstrap.php" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" strict="false" verbose="true"> <testsuites> <testsuite name="Everything"> <directory>test/IDF/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">src/IDF</directory> <exclude> <directory suffix=".php">src/IDF/Tests</directory> <directory suffix=".php">src/IDF/conf</directory> <file>src/IDF/version.php</file> </exclude> </whitelist> </filter> </phpunit> |