-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
87 lines (87 loc) · 3.26 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
87 lines (87 loc) · 3.26 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/Bootstrap.php"
colors="true"
stopOnFailure="false"
backupGlobals="false"
cacheDirectory=".phpunit.cache"
>
<testsuites>
<testsuite name="Analysis Tests">
<directory>tests/Analysis</directory>
</testsuite>
<testsuite name="Auth Tests">
<directory>tests/Auth</directory>
</testsuite>
<testsuite name="Builder Tests">
<directory>tests/Builder</directory>
</testsuite>
<testsuite name="Core Tests">
<directory>tests/Core</directory>
</testsuite>
<testsuite name="Email Tests">
<directory>tests/Email</directory>
</testsuite>
<testsuite name="Database Tests">
<directory>tests/Database</directory>
</testsuite>
<testsuite name="Date Tests">
<directory>tests/Date</directory>
</testsuite>
<testsuite name="Discovery Tests">
<directory>tests/Discovery</directory>
</testsuite>
<testsuite name="Enum Tests">
<directory>tests/Enum</directory>
</testsuite>
<testsuite name="File Tests">
<directory>tests/File</directory>
</testsuite>
<testsuite name="IO Tests">
<directory>tests/IO</directory>
</testsuite>
<testsuite name="ImpExp Tests">
<directory>tests/ImpExp</directory>
</testsuite>
<testsuite name="Intl Tests">
<directory>tests/Intl</directory>
</testsuite>
<testsuite name="Notification Tests">
<directory>tests/Notification</directory>
</testsuite>
<testsuite name="Utils Tests">
<directory>tests/Utils</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="1"/>
<!--
The expected timestamps in the Date tests were written on a machine
set to Europe/Berlin, so the suite pins it. Left to the machine it
passes here and fails on a runner set to UTC. It has to be Berlin
rather than any other central european zone, because the 1920 dates
fall before Spain and France moved off western european time.
-->
<ini name="date.timezone" value="Europe/Berlin"/>
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<!--
The build writes these, and the build is what the tests cover. Left in,
they are three thousand statements nobody wrote and nobody should test,
which only makes the number for everything else look worse than it is.
-->
<exclude>
<directory suffix=".php">src/System</directory>
<directory suffix=".php">src/Log/Type</directory>
<directory suffix=".php">src/Auth/Schema</directory>
<directory suffix=".php">src/Core/Schema</directory>
<directory suffix=".php">src/Email/Schema</directory>
<directory suffix=".php">src/Log/Schema</directory>
<directory suffix=".php">src/Notification/Schema</directory>
</exclude>
</source>
</phpunit>