forked from peviitor-ro/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
29 lines (27 loc) · 1003 Bytes
/
Copy pathphpunit.xml
File metadata and controls
29 lines (27 loc) · 1003 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true" stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>unitTest</directory>
</testsuite>
</testsuites>
<!-- Adăugăm configurarea pentru acoperirea codului -->
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<!-- Fișierele sau directoarele care să fie excluse din raportul de acoperire -->
<!-- De exemplu:
<exclude>
<directory>src/ExcludeThisDirectory</directory>
</exclude>
-->
</coverage>
<!-- Configurații pentru logging -->
<logging>
<log type="coverage-html" target="coverage-report" />
<!-- Pentru a genera și un raport în format Clover XML:
<log type="coverage-clover" target="coverage-report/clover.xml"/>
-->
</logging>
</phpunit>