1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00
dns/phpunit.xml.dist

29 lines
856 B
Plaintext
Raw Normal View History

2016-08-24 06:17:20 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-06-17 10:49:54 +02:00
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
2016-08-24 06:17:20 +02:00
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
2017-06-17 10:49:54 +02:00
<testsuite name="Main">
2016-08-24 06:17:20 +02:00
<directory>test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">lib</directory>
</whitelist>
</filter>
2017-06-17 10:49:54 +02:00
<listeners>
<listener class="Amp\PHPUnit\LoopReset"/>
</listeners>
</phpunit>