FreeScoutGPT/vendor/tectalic/openai/phpunit.xml.dist
Михаил Баринов 7210a52e55 first commit
2023-04-14 01:35:57 +03:00

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>