2FAuth/phpunit.xml

42 lines
1.4 KiB
XML
Raw Normal View History

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