blessing-skin-server/phpunit.xml

24 lines
640 B
XML
Raw Normal View History

2017-10-26 23:24:33 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2023-05-30 17:42:45 +08:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<source>
2020-10-13 11:06:35 +08:00
<include>
<directory suffix=".php">./app</directory>
</include>
<exclude>
<directory suffix=".php">./app/Services/Cipher</directory>
</exclude>
2023-05-30 17:42:45 +08:00
</source>
<php>
2023-05-30 17:42:45 +08:00
<env name="APP_ENV" value="testing" />
</php>
2017-10-26 23:24:33 +08:00
</phpunit>