laravel-package-skeleton/phpunit.xml

18 lines
532 B
XML
Raw Normal View History

2022-08-20 16:01:10 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2023-05-29 20:52:41 +00:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
<coverage/>
2022-08-20 16:01:10 +00:00
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
</php>
2023-05-29 20:52:41 +00:00
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
2022-08-20 16:01:10 +00:00
</phpunit>