mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 14:25:45 +01:00
I'm creating a workaround here, which is not exactly happy with, but adding "uopz" as a dependency to run the tests make it harder for developers, including myself.
27 lines
980 B
XML
27 lines
980 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
bootstrap="tests/bootstrap.php"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
convertDeprecationsToExceptions="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
verbose="true">
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory suffix="Test.php">tests/unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="integration">
|
|
<directory suffix=".phpt">tests/integration/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage processUncoveredFiles="true" ignoreDeprecatedCodeUnits="true">
|
|
<include>
|
|
<directory suffix=".php">library/</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|