mirror of
https://gh.wpcy.net/https://github.com/presswizards/FreeScoutGPT.git
synced 2026-07-15 08:28:53 +08:00
17 lines
757 B
XML
17 lines
757 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Documentation: https://phpunit.readthedocs.io/en/9.5/configuration.html -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" colors="true" cacheDirectory=".phpunit.cache">
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory suffix=".php">./tests/Unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="integration">
|
|
<directory suffix="Test.php">./tests/Integration/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage ignoreDeprecatedCodeUnits="true">
|
|
<include>
|
|
<directory suffix=".php">./src</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|