-
Tim van Dijen authored
* Remove deprecated classes * Remove support for certificate fingerprints * Remove many deprecated methods and pieces of code * Remove SAML1.1/Shib1.3 support * Remove many superfluous annotations * Update unit test to work with new PHPunit Closes #1268 Closes #1020 Closes #431 Closes #167 Closes #151
Tim van Dijen authored* Remove deprecated classes * Remove support for certificate fingerprints * Remove many deprecated methods and pieces of code * Remove SAML1.1/Shib1.3 support * Remove many superfluous annotations * Update unit test to work with new PHPunit Closes #1268 Closes #1020 Closes #431 Closes #167 Closes #151
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
phpunit.xml 1.43 KiB
<?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="Unit tests">
<directory>./vendor/simplesamlphp/simplesamlphp-test-framework/src</directory>
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib/</directory>
<directory suffix=".php">./modules/core/lib/</directory>
<directory suffix=".php">./modules/saml/lib/</directory>
<exclude>
<directory>./vendor/</directory>
<directory>./tests/</directory>
<file>./lib/SimpleSAML/Utils/HttpAdapter.php</file>
<file>./lib/SimpleSAML/Auth/LDAP.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-html" target="build/coverage" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>