mirror of
https://github.com/matthiasmullie/minify.git
synced 2025-01-16 20:28:19 +01:00
20 lines
583 B
XML
20 lines
583 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd">
|
|
<coverage>
|
|
<report>
|
|
<clover outputFile="build/coverage.clover"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="minify">
|
|
<directory suffix="Test.php">tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging/>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|