File: phpunit.xml.dist

package info (click to toggle)
php-nesbot-carbon 2.65.0-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,280 kB
  • sloc: php: 157,346; xml: 42; makefile: 26; sh: 12
file content (63 lines) | stat: -rw-r--r-- 2,170 bytes parent folder | download | duplicates (2)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
    bootstrap="tests/bootstrap.php"
    colors="true"
>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src/Carbon</directory>
            <exclude>
                <file>src/Carbon/PHPStan/Macro.php</file>
                <file>src/Carbon/Translator.php</file>
                <file>src/Carbon/TranslatorStrongType.php</file>
                <file>src/Carbon/TranslatorWeakType.php</file>
            </exclude>
        </whitelist>
    </filter>

    <testsuites>
        <testsuite name="carbon">
            <directory>tests/Carbon</directory>
            <directory>tests/CommonTraits</directory>
        </testsuite>
        <testsuite name="immutable">
            <directory>tests/CarbonImmutable</directory>
        </testsuite>
        <testsuite name="interval">
            <directory>tests/CarbonInterval</directory>
        </testsuite>
        <testsuite name="period">
            <directory>tests/CarbonPeriod</directory>
        </testsuite>
        <testsuite name="timezone">
            <directory>tests/CarbonTimeZone</directory>
        </testsuite>
        <testsuite name="localization">
            <directory>tests/Localization</directory>
        </testsuite>
        <testsuite name="laravel">
            <directory>tests/Laravel</directory>
        </testsuite>
        <testsuite name="doctrine">
            <directory>tests/Doctrine</directory>
        </testsuite>
        <testsuite name="factory">
            <directory>tests/Factory</directory>
        </testsuite>
        <testsuite name="language">
            <directory>tests/Language</directory>
        </testsuite>
        <testsuite name="jenssegers">
            <directory>tests/Jenssegers</directory>
        </testsuite>
        <testsuite name="cli">
            <directory>tests/Cli</directory>
        </testsuite>
    </testsuites>

    <php>
        <ini name="max_execution_time" value="0"/>
    </php>
</phpunit>