Projet

Général

Profil

Paste
Télécharger (615 octets) Statistiques
| Branche: | Révision:

root / drupal7 / misc / brumann / polyfill-unserialize / phpunit.xml.dist @ fbb66ca6

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<phpunit
4
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
    xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
6
    backupGlobals="false"
7
    colors="true"
8
    bootstrap="vendor/autoload.php"
9
>
10
    <php>
11
        <ini name="error_reporting" value="-1" />
12
    </php>
13

    
14
    <testsuites>
15
        <testsuite name="Brumann\Polyfill Test Suite">
16
            <directory>./tests/</directory>
17
        </testsuite>
18
    </testsuites>
19

    
20
    <filter>
21
        <whitelist>
22
            <directory>./src/</directory>
23
        </whitelist>
24
    </filter>
25
</phpunit>