30 lines
932 B
XML
30 lines
932 B
XML
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="true"
|
|
bootstrap="/path/to/bootstrap.php"
|
|
colors="false"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="true"
|
|
stopOnFailure="true"
|
|
syntaxCheck="false"
|
|
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
|
|
<filter>
|
|
<blacklist>
|
|
<directory suffix=".php">/path/to/files</directory>
|
|
<file>/path/to/file</file>
|
|
<exclude>
|
|
<directory suffix=".php">/path/to/files</directory>
|
|
<file>/path/to/file</file>
|
|
</exclude>
|
|
</blacklist>
|
|
<whitelist>
|
|
<directory suffix=".php">/path/to/files</directory>
|
|
<file>/path/to/file</file>
|
|
<exclude>
|
|
<directory suffix=".php">/path/to/files</directory>
|
|
<file>/path/to/file</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit> |