2024-01-31 08:10:26 -07:00
<?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"
bootstrap= "vendor/autoload.php"
cacheResultFile= ".phpunit.cache/test-results"
executionOrder= "depends,defects"
forceCoversAnnotation= "true"
beStrictAboutCoversAnnotation= "true"
beStrictAboutTodoAnnotatedTests= "true"
convertDeprecationsToExceptions= "true"
failOnRisky= "true"
failOnWarning= "true" >
<testsuites >
<testsuite name= "S3" >
<directory > tests</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory= ".phpunit.cache/code-coverage" >
<include >
<directory suffix= ".php" > .</directory>
</include>
<exclude >
<directory suffix= ".php" > *vendor*</directory>
<directory suffix= ".php" > tests</directory>
<file > Runner.php</file>
</exclude>
</coverage>
</phpunit>