-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
phpunit.xml
42 lines (42 loc) · 1.65 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" bootstrap="tests/bootstrap.php"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true"
testdox="false"
cacheDirectory=".phpunit.cache"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="true"
displayDetailsOnPhpunitDeprecations="false"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="false"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true">
<testsuites>
<testsuite name="phpMyFAQ Test Suite">
<directory>./tests/phpMyFAQ</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<text outputFile="coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
<html outputDirectory="html-coverage" lowUpperBound="50" highLowerBound="80"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">./phpmyfaq/src/phpMyFAQ</directory>
</include>
<exclude>
<directory suffix=".php">./phpmyfaq/src/libs</directory>
</exclude>
</source>
<php>
<server name="PHP_AUTH_USER" value="testUser"/>
<server name="PHP_AUTH_PW" value="testPassword"/>
</php>
</phpunit>