This repository was archived by the owner on Sep 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
37 lines (37 loc) · 1.41 KB
/
phpunit.xml
File metadata and controls
37 lines (37 loc) · 1.41 KB
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
34
35
36
37
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="csrdelft/orm PHP Coverage">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="testdox-html" target="build/testdox.html"/>
<log type="junit" target="build/logfile.xml"/>
<log type="coverage-html" target="build/coverage-html"/>
<log type="coverage-xml" target="build/coverage-xml"/>
<log type="coverage-clover" target="build/clover.xml"/>
<log type="coverage-text" target="build/coverage.txt"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<!-- These files do not contain logic -->
<file>src/Entity/T.php</file>
<file>src/Entity/Sparse.php</file>
<file>src/Entity/PersistentEnum.php</file>
<file>src/Entity/DynamicEntityDefinition.php</file>
<file>src/Persistence.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>