mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-17 18:54:07 +00:00
36233f5918
Co-authored-by: Christopher Georg <christopher.georg@sr-travel.de>
28 lines
711 B
XML
28 lines
711 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"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
executionOrder="defects"
|
|
cacheDirectory=".phpunit.cache"
|
|
>
|
|
<coverage/>
|
|
|
|
<testsuites>
|
|
<testsuite name="EmailValidator Test Suite">
|
|
<directory>./tests/EmailValidator</directory>
|
|
<exclude>./vendor/</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<source>
|
|
<include>
|
|
<directory>./src/</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory suffix=".php">./src/Result/Reason</directory>
|
|
</exclude>
|
|
</source>
|
|
|
|
</phpunit>
|