File: phpunit.xml

package info (click to toggle)
php-font-lib 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 672 kB
  • sloc: php: 2,979; xml: 17; makefile: 15
file content (19 lines) | stat: -rw-r--r-- 622 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
         colors="false"
         stopOnFailure="false"
         bootstrap="vendor/autoload.php"
         displayDetailsOnTestsThatTriggerDeprecations="true"
         displayDetailsOnTestsThatTriggerNotices="true"
         displayDetailsOnTestsThatTriggerWarnings="true"
         displayDetailsOnTestsThatTriggerErrors="true"
         displayDetailsOnSkippedTests="true"
        >
    <testsuites>
        <testsuite name="PHP Font Lib Test Suite">
            <directory>./tests/FontLib/</directory>
        </testsuite>
    </testsuites>

</phpunit>