mirror of
https://github.com/simshaun/recurr.git
synced 2025-01-16 15:38:46 +01:00
efd7388d86
* 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
25 lines
799 B
XML
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>
|