File: phpunit.xml

package info (click to toggle)
php-phpseclib3 3.0.19-1%2Bdeb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,136 kB
  • sloc: php: 29,413; xml: 393; makefile: 20
file content (27 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (3)
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
    bootstrap="../vendor/autoload.php"
    failOnWarning="true"
    failOnRisky="true"
    failOnIncomplete="true"
    failOnEmptyTestSuite="true"
>
    <testsuites>
        <testsuite name="phpseclib Unit Test Suite">
            <directory>./Unit/</directory>
        </testsuite>
        <testsuite name="phpseclib Functional Test Suite">
            <directory>./Functional/</directory>
        </testsuite>
    </testsuites>
    <coverage>
        <include>
            <directory>../phpseclib/</directory>
        </include>
    </coverage>
    <php>
        <ini name="date.timezone" value="UTC"/>
    </php>
</phpunit>