laravel-package-skeleton/phpunit.xml

21 lines
559 B
XML
Raw Normal View History

2022-08-19 23:16:00 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2023-09-01 18:03:39 +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=".cache/phpunit">
2023-05-28 20:49:45 +00:00
<coverage/>
2022-08-19 23:16:00 +00:00
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
</php>
2023-05-28 20:49:45 +00:00
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
2022-08-19 23:16:00 +00:00
</phpunit>