27 lines
825 B
Plaintext
27 lines
825 B
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.4/phpunit.xsd"
|
||
|
backupGlobals="false"
|
||
|
backupStaticAttributes="false"
|
||
|
colors="true"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true"
|
||
|
processIsolation="false"
|
||
|
stopOnFailure="false"
|
||
|
syntaxCheck="false"
|
||
|
bootstrap="tests/bootstrap.php">
|
||
|
|
||
|
<testsuites>
|
||
|
<testsuite name="Phar-Updater Test Suite">
|
||
|
<directory>tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory suffix=".php">src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
</phpunit>
|