File: phpunit.xml.dist

package info (click to toggle)
php-http-psr7-integration-tests 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 452 kB
  • sloc: php: 1,593; makefile: 19
file content (39 lines) | stat: -rw-r--r-- 1,148 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    backupGlobals="false"
    colors="true"
    processIsolation="false"
    stopOnFailure="false"
    bootstrap="vendor/autoload.php"
    xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
    cacheDirectory=".phpunit.cache"
    backupStaticProperties="true"
>
  <coverage>
    <include>
      <directory>./src</directory>
    </include>
  </coverage>
  <testsuites>
    <testsuite name="Guzzle">
      <directory>./tests/Guzzle/</directory>
    </testsuite>
    <testsuite name="RingCentral">
      <directory>./tests/RingCentral/</directory>
    </testsuite>
    <testsuite name="Slim">
      <directory>./tests/Slim/</directory>
    </testsuite>
    <testsuite name="Laminas">
      <directory>./tests/Laminas/</directory>
    </testsuite>
    <testsuite name="Nyholm">
      <directory>./vendor/nyholm/psr7/tests/Integration/</directory>
    </testsuite>

    <testsuite name="HttpSoft">
        <directory>./vendor/httpsoft/http-message/tests/Integration/</directory>
    </testsuite>
  </testsuites>
</phpunit>