/ phpunit.xml
phpunit.xml
1 <?xml version="1.0" encoding="UTF-8"?> 2 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" 4 bootstrap="vendor/autoload.php" 5 colors="true" 6 > 7 <testsuites> 8 <testsuite name="Unit"> 9 <directory suffix="Test.php">./tests/Unit</directory> 10 </testsuite> 11 <testsuite name="Feature"> 12 <directory suffix="Test.php">./tests/Feature</directory> 13 </testsuite> 14 <testsuite name="Services"> 15 <directory suffix="Test.php">./tests/Services</directory> 16 </testsuite> 17 </testsuites> 18 <coverage processUncoveredFiles="true"> 19 <include> 20 <directory suffix=".php">./app</directory> 21 </include> 22 </coverage> 23 <php> 24 <env name="APP_ENV" value="testing"/> 25 <env name="BCRYPT_ROUNDS" value="4"/> 26 <env name="CACHE_DRIVER" value="array"/> 27 <env name="DB_DATABASE" value="testing"/> 28 <env name="MAIL_MAILER" value="array"/> 29 <env name="QUEUE_CONNECTION" value="sync"/> 30 <env name="SESSION_DRIVER" value="array"/> 31 <env name="TELESCOPE_ENABLED" value="false"/> 32 </php> 33 </phpunit>