20 lines
532 B
XML
20 lines
532 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
colors="true"
|
|
bootstrap="./tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="PHP Enum Test Suite">
|
|
<directory suffix=".php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|