2015-07-10 22:15:42 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
>
|
|
|
|
<testsuites>
|
2016-08-18 18:04:48 +02:00
|
|
|
<testsuite name="Amp Concurrent">
|
|
|
|
<directory>test</directory>
|
2015-07-10 22:15:42 +02:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2016-08-19 00:36:58 +02:00
|
|
|
<directory suffix=".php">lib</directory>
|
2017-12-13 20:56:11 +01:00
|
|
|
<exclude>
|
|
|
|
<!-- Only executed in child contexts -->
|
|
|
|
<file>lib/Context/Internal/process-runner.php</file>
|
|
|
|
<file>lib/Worker/Internal/worker-process.php</file>
|
|
|
|
</exclude>
|
2015-07-10 22:15:42 +02:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<logging>
|
2019-08-27 19:17:41 +02:00
|
|
|
<log type="coverage-html" target="build/coverage"/>
|
2015-07-10 22:15:42 +02:00
|
|
|
</logging>
|
2015-08-03 07:31:01 +02:00
|
|
|
</phpunit>
|