<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
         bootstrap="tests/bootstrap.php"
         colors="true"
>
  <php>
    <const name="PHPUNIT_DEBUG" value="false" />
    <const name="PHPECC_COVERAGE" value="true" />
    <ini name="display_errors" value="On" />
    <ini name="error_reporting" value="32767" />
  </php>
  <testsuites>
    <testsuite name="All">
      <directory>./tests/unit</directory>
    </testsuite>
  </testsuites>
  <coverage>
    <include>
      <directory>./src</directory>
    </include>
  </coverage>
</phpunit>
