<?xml version="1.0" encoding="UTF-8"?>
<phpunit
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
  backupGlobals="false"
  backupStaticAttributes="false"
  bootstrap="vendor/autoload.php"
  colors="true"
  convertErrorsToExceptions="true"
  convertWarningsToExceptions="true"
  convertNoticesToExceptions="true"
  processIsolation="false"
  stopOnFailure="false"
>
  <coverage includeUncoveredFiles="true">
    <include>
      <directory>src/php/</directory>
    </include>
  </coverage>
  <php>
    <server name="KERNEL_DIR" value="./app"/>
  </php>
  <testsuites>
    <testsuite name="Common Library Test Suite">
      <directory>test/php/</directory>
    </testsuite>
  </testsuites>
  <groups>
    <exclude>
      <group>integration</group>
      <group>functional</group>
    </exclude>
  </groups>
</phpunit>
