recurr/phpunit.xml.dist
ankurk91 efd7388d86 Test on php 8 - github actions
* Remove travis-ci and replace with gh-actions
* Update phpunit, update test cases
* Bump minimum php requirement

See php version usage stats
https://packagist.org/packages/simshaun/recurr/php-stats
2021-08-10 14:42:13 +05:30

25 lines
799 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd">
<testsuites>
<testsuite name="Recurr Test Suite">
<directory suffix="Test.php">./tests/Recurr/Test/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/Recurr/</directory>
</whitelist>
</filter>
</phpunit>