Skip to content
Snippets Groups Projects
  • Tim van Dijen's avatar
    2c8aa8a6
    Remove 2.0 deprecations (#1281) · 2c8aa8a6
    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 
    Remove 2.0 deprecations (#1281)
    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>