File: phpunit.xml.dist

package info (click to toggle)
php-pda-pheanstalk 7.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 836 kB
  • sloc: php: 4,604; xml: 19; makefile: 14
file content (24 lines) | stat: -rw-r--r-- 1,027 bytes parent folder | download
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>