21 lines
630 B
XML
21 lines
630 B
XML
<phpunit backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="tests/bootstrap.php">
|
|
<testsuites>
|
|
<testsuite name="Upload Test Suite">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/Upload/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|