-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
28 lines (27 loc) · 847 Bytes
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="false"
convertErrorsToExceptions= "true"
convertNoticesToExceptions= "true"
convertWarningsToExceptions= "true"
bootstrap="tests/phpunit/Thelia/Tests/bootstrap.php"
verbose="true"
backupGlobals="false"
>
<testsuites>
<testsuite name="Thelia">
<directory>tests/phpunit/Thelia/Tests</directory>
<directory>local/modules/*/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>core/lib</directory>
<exclude>
<directory>core/lib/Thelia/Model/map</directory>
<directory>core/lib/Thelia/Model/om</directory>
<directory>core/lib/Thelia/Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>