30 lines
983 B
XML
Executable file
30 lines
983 B
XML
Executable file
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.7/phpunit.xsd"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
>
|
|
<php>
|
|
<!-- Needed because @dataProvider uses iterator_to_array() -->
|
|
<ini name="memory_limit" value="1G" />
|
|
<ini name="error_reporting" value="-1" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="Amp Websocket Client Test">
|
|
<directory>test</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|