videocutting/phpunit.xml.dist

30 lines
736 B
Plaintext
Raw Normal View History

2020-09-30 11:46:41 +02:00
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2023-06-11 17:04:44 +02:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
2020-09-30 11:46:41 +02:00
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
requireCoverageMetadata="false"
>
2020-09-30 11:46:41 +02:00
<testsuites>
<testsuite name="unit">
<directory>tests/Unit/</directory>
</testsuite>
</testsuites>
2023-06-11 17:04:44 +02:00
<coverage/>
<source>
2020-09-30 11:46:41 +02:00
<include>
<directory suffix=".php">src</directory>
</include>
2023-06-11 17:04:44 +02:00
</source>
2020-09-30 11:46:41 +02:00
</phpunit>