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>
|
2018-02-16 15:44:36 +08:00
|
|
|
<php>
|
2023-05-30 17:42:45 +08:00
|
|
|
<env name="APP_ENV" value="testing" />
|
2018-02-16 15:44:36 +08:00
|
|
|
</php>
|
2017-10-26 23:24:33 +08:00
|
|
|
</phpunit>
|