forked from Spoje-NET/php-abraflexi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
20 lines (20 loc) · 842 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="./testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src/AbraFlexi</directory>
</include>
</coverage>
<testsuites>
<testsuite name="all">
<directory>./testing</directory>
</testsuite>
</testsuites>
<!-- logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging -->
</phpunit>