-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml
27 lines (25 loc) · 1.16 KB
/
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
<phpunit bootstrap="test/Bootstrap.php" colors="true">
<testsuites>
<testsuite name="Eye4web ZfcUserPmTest">
<directory>./test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./config</directory>
<file>./src/Eye4web/ZfcUser/Pm/Module.php</file>
<file>./src/Eye4web/ZfcUser/Pm/Entity/ConversationInterface.php</file>
<file>./src/Eye4web/ZfcUser/Pm/Entity/ConversationReceiverInterface.php</file>
<file>./src/Eye4web/ZfcUser/Pm/Entity/MessageInterface.php</file>
<file>./src/Eye4web/ZfcUser/Pm/Service/PmServiceInterface.php</file>
<file>./src/Eye4web/ZfcUser/Pm/Options/ModuleOptionsInterface.php</file>
<file>./src/Eye4web/ZfcUser/Pm/Mapper/PmMapperInterface.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./test/html-report/" charset="UTF-8" yui="true" />
</logging>
</phpunit>