-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
phpunit.xml
21 lines (21 loc) · 940 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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">
<testsuites>
<testsuite name="phpMyFAQ Test Suite">
<directory>./tests/phpMyFAQ</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<text outputFile="coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">./phpmyfaq/src/phpMyFAQ</directory>
</include>
<exclude>
<directory suffix=".php">./phpmyfaq/src/libs</directory>
</exclude>
</source>
</phpunit>