mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-25 19:48:24 +00:00
0d6268fde5
* Fixes * Backport PHP 7.4 support from 2.x Co-Authored-By: mlocati <michele@locati.it> * Added php-coveralls Co-authored-by: Michele Locati <michele@locati.it>
26 lines
639 B
XML
26 lines
639 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="EmailValidator Test Suite">
|
|
<directory>./tests/egulias/Tests/</directory>
|
|
<exclude>./vendor/</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<blacklist>
|
|
<directory>./vendor</directory>
|
|
</blacklist>
|
|
</filter>
|
|
</phpunit>
|