-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
phpunit.xml.dist
69 lines (69 loc) · 2.04 KB
/
phpunit.xml.dist
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
64
65
66
67
68
69
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
cacheDirectory=".phpunit.cache"
>
<coverage/>
<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>
<testsuite name="phpstan">
<directory>tests/PHPStan</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<ini name="max_execution_time" value="0"/>
</php>
<source>
<include>
<directory suffix=".php">src/Carbon</directory>
</include>
<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>
</source>
</phpunit>