whitecube/nova-page

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
         bootstrap="./tests/bootstrap.php"
>
    <testsuites>
        <testsuite name="Package Test Suite">
            <directory suffix=".php">./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>src/</directory>
            <exclude>
                <directory>src/Exceptions</directory>
                <directory>src/Stubs</directory>
                <directory>src/Http</directory>
                <file>src/config.php</file>
                <file>src/NovaPageFacade.php</file>
                <file>src/NovaPageRouteMacros.php</file>
                <file>src/NovaPageServiceProvider.php</file>
                <file>src/NovaPageTool.php</file>
                <file>src/NovaPageToolServiceProvider.php</file>
                <file>src/Sources/SourceInterface.php</file>
            </exclude>
        </whitelist>
    </filter>
</phpunit>