forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
26 lines (26 loc) · 1.22 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
<?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="true" cacheDirectory=".phpunit.cache" requireCoverageMetadata="false" beStrictAboutCoverageMetadata="true" displayDetailsOnTestsThatTriggerWarnings="true" displayDetailsOnTestsThatTriggerNotices="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>