2FAuth/phpunit.xml

36 lines
1.2 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"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
2022-04-01 13:35:59 +02:00
stopOnError="false"
beStrictAboutTestsThatDoNotTestAnything="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./app</directory>
</include>
</coverage>
2019-05-20 07:37:41 +02:00
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
2021-11-22 01:09:54 +01:00
<testsuite name="Api.v1">
<directory suffix="Test.php">./tests/Api/v1</directory>
</testsuite>
2019-05-20 07:37:41 +02:00
</testsuites>
<php>
2022-04-01 13:35:59 +02:00
<env name="APP_ENV" value="testing"/>
<!-- Use .env.testing to customize other testing vars -->
2019-05-20 07:37:41 +02:00
</php>
</phpunit>