File: phpunit.xml.dist

package info (click to toggle)
php-mikey179-vfsstream 1.6.12-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,312 kB
  • sloc: php: 5,629; xml: 13; makefile: 10
file content (22 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         bootstrap="src/test/bootstrap.php"
         colors="true"
         processIsolation="false"
         stopOnError="false"
         stopOnFailure="false"
         stopOnIncomplete="false"
         stopOnSkipped="false"
         >
  <testsuites>
    <testsuite name="test">
      <directory suffix=".phpt">./src/test/phpt</directory>
      <directory suffix="TestCase.php">./src/test/php</directory>
    </testsuite>
  </testsuites>

  <php>
    <ini name="memory_limit" value="-1"/>
    <ini name="error_reporting" value="30719"/> <!-- E_ALL | E_STRICT -->
  </php>
</phpunit>