forked from slashtrace/slashtrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
33 lines (32 loc) · 1.19 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
colors="true"
verbose="true"
processIsolation="false"
convertErrorsToExceptions="false"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false">
<testsuites>
<testsuite>
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
<exclude>
<directory>./src/Resources</directory>
<file>./src/Context/User.php</file>
<file>./src/Context/Breadcrumbs/Breadcrumb.php</file>
<file>./src/Formatter/TextVarDumper.php</file>
<file>./src/Formatter/VarDumper.php</file>
<file>./src/Http/Request.php</file>
<file>./src/Level.php</file>
<file>./src/System/CLImateOutput.php</file>
<file>./src/System/System.php</file>
<file>./src/Template/PlatesTemplateEngine.php</file>
<file>./src/Template/ResourceLoader.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>