-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
45 lines (40 loc) · 1.38 KB
/
phpunit.xml.dist
File metadata and controls
45 lines (40 loc) · 1.38 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertWarningsToExceptions = "true"
convertNoticesToExceptions = "false"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "vendor/autoload.php"
verbose = "false"
timeoutForLargeTests = "120"
>
<testsuites>
<testsuite name="Core">
<directory>tests/T100Core</directory>
</testsuite>
<testsuite name="Helpers">
<directory>tests/T200Helpers</directory>
</testsuite>
<testsuite name="Dictionary">
<directory>tests/T300Dictionary</directory>
</testsuite>
<testsuite name="Components">
<directory>tests/T400Components</directory>
</testsuite>
<testsuite name="All">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="phpunit-report.xml"/>
</logging>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
<const name="SPLASH_DEBUG" value="true" />
</php>
</phpunit>