forked from clawrock/magento2-debug
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml.dist
23 lines (23 loc) · 902 Bytes
/
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
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="ClawRock_Debug module">
<directory>Test/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">Console</directory>
<directory suffix=".php">Controller</directory>
<directory suffix=".php">Helper</directory>
<directory suffix=".php">Logger</directory>
<directory suffix=".php">Model</directory>
<directory suffix=".php">Observer</directory>
<directory suffix=".php">Plugin</directory>
<directory suffix=".php">Serializer</directory>
<exclude>
<directory>Test</directory>
</exclude>
</whitelist>
</filter>
</phpunit>