PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Andrey Iatsenko   Laravel FCM   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel FCM
Send notifications to device users using Firebase
Author: By
Last change:
Date: 7 days ago
Size: 1,052 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" > <testsuites> <testsuite name="Feature"> <directory suffix="Test.php">./tests/Feature</directory> </testsuite> <testsuite name="Unit"> <directory suffix="Test.php">./tests/Unit</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./app</directory> </whitelist> </filter> <php> <env name="APP_ENV" value="testing"/> </php> <logging> <log type="testdox-html" target="./public/testing.html"/> <log type="junit" target="./public/phpunit-junit.xml"/> </logging> </phpunit>