File: phpunit.xml

package info (click to toggle)
phing 3.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,868 kB
  • sloc: php: 59,850; xml: 9,713; sql: 78; makefile: 39; sh: 14
file content (28 lines) | stat: -rw-r--r-- 1,274 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
23
24
25
26
27
28
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" beStrictAboutChangesToGlobalState="true" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" failOnWarning="true" failOnRisky="true" bootstrap="./bootstrap.php" convertNoticesToExceptions="false" verbose="true" resolveDependencies="true">
  <coverage includeUncoveredFiles="true" processUncoveredFiles="true">
    <include>
      <directory suffix=".php">../src/Phing/</directory>
    </include>
  </coverage>
  <php>
    <ini name="error_reporting" value="-1"/>
    <ini name="display_errors" value="On"/>
    <ini name="memory_limit" value="-1"/>
    <ini name="date.timezone" value="UTC"/>
  </php>
  <testsuites>
    <testsuite name="AllTests">
      <directory>./Phing</directory>
      <exclude>./Phing/Test/Support/BuildFileTest.php</exclude>
      <exclude>./Phing/Test/Task/Ext/Http/BaseHttpTaskTest.php</exclude>
      <exclude>./Phing/Test/Task/Ext/Svn/AbstractSvnTaskTest.php</exclude>
      <exclude>./Phing/Test/Type/AbstractFileSetTest.php</exclude>
    </testsuite>
  </testsuites>
  <groups>
    <exclude>
      <group>disable</group>
    </exclude>
  </groups>
</phpunit>