<?xml version="1.0"?>
<!--
  ~ This file is part of the Streams package.
  ~
  ~ Copyright 2019-2024 by Julian Finkler <
[email protected]>
  ~
  ~ For the full copyright and license information, please read the LICENSE
  ~ file that was distributed with this source code.
  -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         bootstrap="vendor/autoload.php"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
         cacheDirectory=".phpunit.cache"
         failOnWarning="true"
         displayDetailsOnTestsThatTriggerWarnings="true">
    <testsuites>
        <testsuite name="UnitTests">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <source>
        <include>
            <directory suffix=".php">./src</directory>
        </include>
    </source>
</phpunit>