File: phpunit.xml.dist

package info (click to toggle)
php-analog 1.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 324 kB
  • ctags: 201
  • sloc: php: 762; makefile: 6; sh: 5
file content (19 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (2)
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"
         backupStaticAttributes="false"
         bootstrap="./tests/bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
>
    <testsuites>
        <testsuite name="Analog Test Suite">
            <directory suffix="Test.php" phpVersion="5.3.2" phpVersionOperator=">=">./tests</directory>
        </testsuite>
    </testsuites>
</phpunit>