-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathphpunit.xml
63 lines (63 loc) · 1.92 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
62
63
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="true"
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="unit">
<directory>tests/src/Unit</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/src/Functional</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/src/Integration</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_COMPANY" value="76192083-9" />
<env name="LIBREDTE_ENV_TEST_AUTH_DATE" value="2019-12-23" />
<env name="LIBREDTE_CERTIFICATE_FILE" value="tests/resources/certificates/fake-certificate.pfx" />
<env name="LIBREDTE_CERTIFICATE_PASS" value="i_love_libredte" />
</php>
</phpunit>