-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
31 lines (31 loc) · 1.27 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
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="UnitTest">
<directory suffix="Test.php">UnitTest</directory>
</testsuite>
<testsuite name="IntegrationTest">
<directory suffix="Test.php">IntegrationTest</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>TestApp/core</directory>
<exclude>
<file>TestApp/core/WebStream/Annotation/Base/IAnnotatable.php</file>
<file>TestApp/core/WebStream/Annotation/Base/IClass.php</file>
<file>TestApp/core/WebStream/Annotation/Base/IMethod.php</file>
<file>TestApp/core/WebStream/Annotation/Base/IMethods.php</file>
<file>TestApp/core/WebStream/Annotation/Base/IProperty.php</file>
<file>TestApp/core/WebStream/Annotation/Base/IRead.php</file>
<file>TestApp/core/WebStream/Core/CoreInterface.php</file>
<file>TestApp/core/WebStream/Cache/Driver/ICache.php</file>
<file>TestApp/core/WebStream/Template/ITemplateEngine.php</file>
<file>TestApp/core/WebStream/Validate/Rule/IValidate.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>