forked from briannesbitt/Carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
61 lines (59 loc) · 1.94 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<filter>
<whitelist>
<directory>src/Carbon</directory>
</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>
<testsuite name="phpstan">
<directory>tests/PHPStan</directory>
</testsuite>
</testsuites>
</phpunit>