File: phpunit.xml.dist

package info (click to toggle)
php-webmozart-assert 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,208 kB
  • sloc: php: 7,027; makefile: 13; xml: 13
file content (17 lines) | stat: -rw-r--r-- 544 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
         bootstrap="vendor/autoload.php"
         colors="true">
  <testsuites>
    <testsuite name="Webmozart Assert Test Suite">
      <directory>./tests/</directory>
      <exclude>./tests/static-analysis</exclude>
    </testsuite>
  </testsuites>
  <source>
    <include>
      <directory suffix=".php">./src/</directory>
    </include>
  </source>
</phpunit>