mirror of
https://github.com/beste/clock.git
synced 2026-08-17 17:47:13 +00:00
22 lines
585 B
XML
22 lines
585 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
cacheResultFile=".build/phpunit/phpunit.cache"
|
|
beStrictAboutCoversAnnotation="true"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Tests">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory>src/Clock</directory>
|
|
</include>
|
|
</coverage>
|
|
|
|
</phpunit>
|