File: phpunit.xml.dist

package info (click to toggle)
php-league-mime-type-detection 1.10.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 264 kB
  • sloc: php: 549; makefile: 15; sh: 5
file content (18 lines) | stat: -rw-r--r-- 625 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="phpunit.php">
    <testsuites>
        <testsuite name="Flysystem MimeTypeDetection">
            <directory suffix="Test.php">./src/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>./src/</directory>
            <exclude>
                <directory suffix=".php">./src/Generation</directory>
                <directory suffix="Test.php">./src/</directory>
                <directory suffix="Fixture.php">./src/</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>