2FAuth/phpunit.xml

41 lines
1.4 KiB
XML
Raw Permalink Normal View History

2019-05-20 05:37:41 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
2023-08-01 09:28:27 +00:00
backupStaticProperties="false"
bootstrap="vendor/autoload.php"
colors="true"
2023-08-01 09:28:27 +00:00
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
processIsolation="false"
stopOnFailure="false"
2022-04-01 11:35:59 +00:00
stopOnError="false"
beStrictAboutTestsThatDoNotTestAnything="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
2023-08-01 09:28:27 +00:00
<source>
<include>
2022-05-09 22:08:33 +00:00
<directory suffix=".php">app</directory>
</include>
2022-07-13 12:58:09 +00:00
<exclude>
<directory suffix=".php">app/Protobuf</directory>
</exclude>
2023-08-01 09:28:27 +00:00
</source>
<coverage includeUncoveredFiles="true">
</coverage>
2019-05-20 05:37:41 +00:00
<testsuites>
<testsuite name="Unit">
2022-05-09 22:08:33 +00:00
<directory suffix="Test.php">tests/Unit</directory>
2019-05-20 05:37:41 +00:00
</testsuite>
<testsuite name="Feature">
2022-05-09 22:08:33 +00:00
<directory suffix="Test.php">tests/Feature</directory>
2019-05-20 05:37:41 +00:00
</testsuite>
2021-11-22 00:09:54 +00:00
<testsuite name="Api.v1">
2022-05-09 22:08:33 +00:00
<directory suffix="Test.php">tests/Api/v1</directory>
2021-11-22 00:09:54 +00:00
</testsuite>
2019-05-20 05:37:41 +00:00
</testsuites>
<php>
2022-04-01 11:35:59 +00:00
<env name="APP_ENV" value="testing"/>
<!-- following values override .env.testing vars -->
2019-05-20 05:37:41 +00:00
</php>
</phpunit>