-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathphpunit.xml
61 lines (61 loc) · 1.76 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<phpunit
backupGlobals="true"
bootstrap="tests/bootstrap.php"
cacheDirectory="var/cache/phpunit"
processIsolation="true"
executionOrder="depends,defects"
colors="true"
testdox="true"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="false"
beStrictAboutChangesToGlobalState="true"
stopOnError="true"
stopOnFailure="true"
stopOnWarning="true"
stopOnDeprecation="true"
stopOnNotice="true"
failOnEmptyTestSuite="true"
failOnWarning="true"
failOnRisky="true"
failOnDeprecation="true"
failOnPhpunitDeprecation="true"
failOnNotice="true"
>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<testsuites>
<testsuite name="dte-facturacion">
<directory>tests/dte_facturacion</directory>
</testsuite>
<testsuite name="lce-contabilidad">
<directory>tests/lce_contabilidad</directory>
</testsuite>
<testsuite name="pagos-cobros-mas">
<directory>tests/pagos_cobros_masivos</directory>
</testsuite>
</testsuites>
<coverage
ignoreDeprecatedCodeUnits="true"
pathCoverage="true"
>
<report>
<text
outputFile="var/tests-coverage.txt"
showUncoveredFiles="true"
/>
<clover outputFile="var/tests-coverage.xml" />
</report>
</coverage>
<logging>
<testdoxText outputFile="var/tests-testdox.txt"/>
</logging>
<php>
<ini name="memory_limit" value="-1" />
<env name="LIBREDTE_URL" value="https://libredte.cl" />
<env name="LIBREDTE_RUT" value="76192083-9" />
</php>
</phpunit>