-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml.dist
50 lines (50 loc) · 1.48 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true"
syntaxCheck="true">
<testsuites>
<testsuite name="Cache">
<directory>lucid/cache/tests</directory>
</testsuite>
<testsuite name="Common">
<directory>lucid/common/tests</directory>
</testsuite>
<testsuite name="Config">
<directory>lucid/config/tests</directory>
</testsuite>
<testsuite name="DI">
<directory>lucid/di/tests</directory>
</testsuite>
<testsuite name="Signal">
<directory>lucid/signal/tests</directory>
</testsuite>
<testsuite name="Filesystem">
<directory>lucid/filesystem/tests</directory>
</testsuite>
<testsuite name="Hash">
<directory>lucid/hash/tests</directory>
</testsuite>
<testsuite name="Http">
<directory>lucid/http/tests</directory>
</testsuite>
<testsuite name="Mux">
<directory>lucid/mux/tests</directory>
</testsuite>
<testsuite name="Template">
<directory>lucid/template/tests</directory>
</testsuite>
<testsuite name="Writer">
<directory>lucid/writer/tests</directory>
</testsuite>
<testsuite name="Xml">
<directory>lucid/xml/tests</directory>
</testsuite>
</testsuites>
</phpunit>