1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
- backupGlobals="false"
- backupStaticAttributes="false"
- beStrictAboutOutputDuringTests="true"
- beStrictAboutTestsThatDoNotTestAnything="true"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- failOnRisky="true"
- failOnWarning="true"
- processIsolation="false"
- stopOnError="false"
- stopOnFailure="false"
- verbose="true"
- >
- <coverage processUncoveredFiles="true">
- <include>
- <directory suffix=".php">src/</directory>
- </include>
- <report>
- <clover outputFile="build/logs/clover.xml"/>
- <text outputFile="php://stdout"/>
- </report>
- </coverage>
- <testsuites>
- <testsuite name="SocialiteProviders Manager Test Suite">
- <directory suffix="Test.php">./tests</directory>
- </testsuite>
- </testsuites>
- </phpunit>
|