user_saml/tests/unit/phpunit.xml
Joas Schilling dea8deab2a
Merge pull request #593 from nextcloud/update-master-phpunit-config
Update master php testing versions
2022-04-08 08:01:30 +02:00

20 lines
554 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="bootstrap.php"
verbose="true"
convertDeprecationsToExceptions="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
>
<testsuite name='User_SAML App Tests'>
<directory suffix='Test.php'>.</directory>
</testsuite>
<!-- filters for code coverage -->
<filter>
<whitelist>
<directory suffix=".php">../../../user_saml/appinfo</directory>
<directory suffix=".php">../../../user_saml/lib</directory>
</whitelist>
</filter>
</phpunit>