1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache" backupStaticProperties="false" requireCoverageMetadata="true">
<coverage/>
<testsuites>
<testsuite name="Pheanstalk Unit Tests">
<directory>./tests/Unit</directory>
</testsuite>
<testsuite name="Pheanstalk Integration Tests">
<directory>./tests/Integration</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./src</directory>
</include>
</source>
<php>
<ini name="display_errors" value="true"/>
<!-- error_reporting(E_ALL) -->
<ini name="error_reporting" value="32767"/>
<server name="SERVER_HOST" value="beanstalk"/>
<server name="UNIX_SERVER_HOST" value="unix:///shared/beanstalkd.sock"/>
</php>
</phpunit>
|