Newer
Older
ubFramework / Portal / docroot / phpMyAdmin / vendor / phpmyadmin / sql-parser / phpunit.xml
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 1 KB Cleaning Up Making It A Sub Module
<?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"
         syntaxCheck="false">
    <logging>
        <log type="coverage-clover" target="coverage.xml" />
    </logging>
    <testsuites>
        <testsuite name="Builder">
            <directory suffix=".php">./tests/Builder</directory>
        </testsuite>
        <testsuite name="Components">
            <directory suffix=".php">./tests/Components</directory>
        </testsuite>
        <testsuite name="Lexer">
            <directory suffix=".php">./tests/Lexer</directory>
        </testsuite>
        <testsuite name="Misc">
            <directory suffix=".php">./tests/Misc</directory>
        </testsuite>
        <testsuite name="Parser">
            <directory suffix=".php">./tests/Parser</directory>
        </testsuite>
        <testsuite name="Utils">
            <directory suffix=".php">./tests/Utils</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src/</directory>
        </whitelist>
    </filter>
</phpunit>