Blame view

vendor/nikic/php-parser/phpunit.xml.dist 694 Bytes
c4650843   Etienne Pallier   Ajout du dossier ...
1
2
<?xml version="1.0" encoding="UTF-8"?>

d06254b2   Etienne Pallier   bugfix plugin mig...
3
4
5
6
7
8
9
10
11
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="false"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
c4650843   Etienne Pallier   Ajout du dossier ...
12
13
14
15
16
17
18
19
20
21
22
23
24
         bootstrap="./test/bootstrap.php">
    <testsuites>
        <testsuite name="PHPParser Test Suite">
            <directory>./test/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist>
            <directory suffix=".php">./lib/PhpParser/</directory>
        </whitelist>
    </filter>
</phpunit>