https://github.com/dingo/api
Raw File
Tip revision: 05299b02e98c2833fed7fee8ce223b4ba8d2b2d4 authored by Max on 06 January 2020, 12:31:51 UTC
Merge pull request #1693 from macellan/array_routers
Tip revision: 05299b0
phpunit.xml.dist
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         beStrictAboutTestsThatDoNotTestAnything="true"
         beStrictAboutOutputDuringTests="true"
         bootstrap="vendor/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         failOnRisky="true"
         failOnWarning="true"
         processIsolation="false"
         stopOnError="false"
         stopOnFailure="false"
         syntaxCheck="true"
         verbose="true"
    >
    <testsuites>
        <testsuite name="API Test Suite">
            <directory suffix="Test.php">./tests</directory>
            <exclude>./tests/Routing/Adapter/LumenTest.php</exclude>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./src</directory>
        </whitelist>
    </filter>
</phpunit>
back to top